https://github.com/juanpicado/npm-babel-module-example
A scaffolding module to start writing your NPM modules used as dependency in ES6 using Babel.
https://github.com/juanpicado/npm-babel-module-example
Last synced: 9 months ago
JSON representation
A scaffolding module to start writing your NPM modules used as dependency in ES6 using Babel.
- Host: GitHub
- URL: https://github.com/juanpicado/npm-babel-module-example
- Owner: juanpicado
- License: mit
- Created: 2016-04-27T20:48:45.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-27T20:49:06.000Z (over 9 years ago)
- Last Synced: 2025-03-23T21:42:50.354Z (10 months ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# npm-babel-module-example
A scaffolding module to start writing your NPM modules used as dependency in ES6 using Babel.
## Install
```
$ npm install npm-babel-module-example --save
```
## How to use as a dependency
````
import MyModule from 'npm-babel-module-example';
...
var my = new MyModule("bar");
````
## License
MIT license; see [LICENSE](./LICENSE).
(c) 2016 by Juan Picado