Template for Open Source Library

Installation

From npm:

npm install open-source-library
      

If you want to use it from node:

var {foo, bar} = require('open-source-lbrary');

console.log(foo('lorem'));
console.log(bar('ipsum'));
      

If you want to use it from browser you can also use npm or get the file from raw git or unpkg.com:

<script src="https://rawgit.com/jcubic/open-source-library/master/dist/lib.min.js"></script>

<script src="https://unpkg.com/open-source-library"></script>
      

Then in your code you can use lib namespace:

lib.foo('lorem');
lib.bar('ipsum');
      

License

Released under MIT license

Copyright (c) 2018 Jakub Jankiewicz