automatic_carnival
v0.0.2
Published
A cool module that does things
Downloads
2
Readme
Install / Import
Node:
$ npm install --save automatic_carnival
import { myFunction, myObject } from 'automatic_carnival';
Specific import
import { myFunction } from 'automatic_carnival/myFunction';
import { myObject } from 'automatic_carnival/myObject';
Deno:
For the latest version:
import { myFunction, myObject } from 'https://deno.land/x/automatic_carnival/mod.ts';
To import a specific release:
import { myFunction, myObject } from 'https://deno.land/x/[email protected]/mod.ts';
Specific imports:
import { myFunction } from 'https://deno.land/x/automatic_carnival/myFunction.ts';
import { myObject } from 'https://deno.land/x/automatic_carnival/myObject.ts';
Import from HTML, with CDN
Expose a global (wider browser support):
<script src="//unpkg.com/automatic_carnival/umd_bundle.min.js"></script>
<script>
var myFunction = automatic_carnival.myFunction;
</script>
Or import as an ES module:
<script type="module">
import { myFunction, myObject } from '//unpkg.com/automatic_carnival/zz_esm/index.js';
</script>
Contribute
npm install
npm run build
npm test
change 1
change 2
change 3