0.0.1 • Published 4 years ago

probable_chainsaw v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

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/probable_chainsaw@0.1.0/mod.ts';
//OR
import { myFunction } from 'https://deno.land/x/probable_chainsaw@0.1.0/myFunction.ts';
import { myObject } from 'https://deno.land/x/probable_chainsaw@0.1.0/myObject.ts';

CI

This repository has has continus integration and automatic publishing implemented via GitHub Action.

Refer to TEMPLATE_README.md for instructions.