/node-template

A simple Node.js template that all our packages use. This is intended to be used as a starting point for all MFDLABS based Node.js templates, the contents of this repository serve as an example.

Primary LanguageTypeScriptApache License 2.0Apache-2.0

@mfdlabs/template

This is a template for all node-js packages created by MFDLABS.

Examples

import { hello_world } from '@mfdlabs/template';

// Call the method
hello_world();

Exports

The package exports the following:

/* A method that returns Hello World */
function hello_world(): string;