Skip to content
Thomas Ricci edited this page May 1, 2021 · 10 revisions

Installation

Add the package to your project.

Usage

First, require the package:

let niche = require('@tom-ricci/niche');

Then, call niche:

niche(/*the module you want to use*/);

For example:

let niche = require("@tom-ricci/niche");

function getValues() {
  niche("fetcher", [0, "./assets/data.json", function(data){
    console.log(data);
  }]);
}

Modules

Clone this wiki locally