probable_chainsaw
v0.0.1
Published
This module is just a test
Downloads
3
Readme
Install / Import
Node:
> npm install --save probable_chainsaw
import { myFunction, myObject } from 'probable_chainsaw';
//OR to import a specific file:
import { myFunction } from 'probable_chainsaw/myFunction'
import { myObject } from 'probable_chainsaw/myObject'
Deno:
For the latest version:
import { myFunction, myObject } from 'https://deno.land/x/probable_chainsaw/mod.ts';
//OR importing specific file:
import { myFunction } from 'https://deno.land/x/probable_chainsaw/myFunction.ts';
import { myObject } from 'https://deno.land/x/probable_chainsaw/myObject.ts';
To import a specific release:
import { myFunction, myObject } from 'https://deno.land/x/[email protected]/mod.ts';
//OR
import { myFunction } from 'https://deno.land/x/[email protected]/myFunction.ts';
import { myObject } from 'https://deno.land/x/[email protected]/myObject.ts';
CI
This repository has has continus integration and automatic publishing implemented via GitHub Action.
Refer to TEMPLATE_README.md for instructions.