overview

Getting Started

Quick:

    const deps = require('ne_gt').init();
    const ne_gt = require('ne_gt').lib();

Verbose:

    const { DepsCreatable, DepsExporter, lib: ne_gt__lib, init: ne_gt__init } = require('ne_gt');
    const deps = new DepsExporter; // Customisable dependencies loader
    if (!ne_gt__init(deps)) throw new Error('Initialization failed');
    const ne_gt = ne_gt__lib(deps);