diff --git a/.babelrc b/.babelrc
new file mode 100644
index 0000000..0e3e3f8
--- /dev/null
+++ b/.babelrc
@@ -0,0 +1,3 @@
+{
+ "presets": ["es2015", "stage-1", "react"]
+}
diff --git a/.eslintrc b/.eslintrc
new file mode 100644
index 0000000..2235935
--- /dev/null
+++ b/.eslintrc
@@ -0,0 +1,9 @@
+{
+ "extends": "airbnb",
+ "parser": "babel-eslint",
+ "rules": {
+ "react/forbid-prop-types": "off",
+ "react/require-default-props": "off",
+ "react/no-did-mount-set-state": "off"
+ }
+}
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..17e6e32
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,5 @@
+lib/
+node_modules/
+playground/
+npm-debug.log
+.DS_Store
diff --git a/.npmignore b/.npmignore
new file mode 100644
index 0000000..5a61604
--- /dev/null
+++ b/.npmignore
@@ -0,0 +1,5 @@
+src/
+node_modules/
+playground/
+npm-debug.log
+**/.*
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..6fe9931
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2017-present Nick Uraltsev
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..f11bc74
--- /dev/null
+++ b/README.md
@@ -0,0 +1,32 @@
+# react-overflow
+
+A React component that detects when it's overflowed by its content.
+
+## Installation
+
+Install `react-overflow` using [npm](https://www.npmjs.org/):
+
+```
+npm install --save react-overflow
+```
+
+## Usage
+
+```jsx
+import { OverflowDetector } from 'react-overflow';
+
+function handleOverflowChange(isOverflowed) {
+ console.log(isOverflowed);
+}
+
+
+