👬 Tell something about your npm-module here. With emojis 🙌
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
using npm
npm install --save package-name
using yarn
yarn add package-name
If you're using module bundlers like webpack, Browserify or rollup, you can import greet
from package-name module:
import {greet} from 'package-name';
// or
const {greet} = require('package-name');
If you wish to include as a script, package-name can be included like this:
<script src="https://unpkg.com/package-name/build/package-name.min.js"></script>
and will be available as a global object named packageName
in the browser.
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
We love contributions from everyone.
- Fork the repo.
- Install dependencies.
yarn install
ornpm install
- We use
AVA
for unit tests.- To run unit tests,
yarn test
ornpm test
- To run unit test in --watch mode,
yarn test-watch
ornpm run test-watch
- To run unit tests,
- Implement the changes, and write test cases. Make sure that all unit test pass.
- To generate the final build, run
yarn build
ornpm build
. - Push your code and create a Pull Request
Note: Make sure you're logged in to NPM before doing this.
To create a tag and publish to NPM run npm run release
or yarn release
. This will show an interactive session on terminal, where you can choose the semantic version to publish. After that, the github release
page will be opened for adding the change logs.
MIT @ YourCompany.com