@ekliptor/apputils

Basic helper functions for HTTP requests, file system, logging, JSON parsing and other basics of a web app.


Keywords
nodejs, webapp, mongodb, logger, css, css3, html, html5, typescript
License
GPL-2.0+
Install
npm install @ekliptor/apputils@0.1.23

Documentation

apputils

Basic helper functions for HTTP requests, file system, logging, JSON parsing and other basics of a web app.

Installation

npm install @ekliptor/apputils

Usage

At the top of your source code file write:

with TypeScript:

import * as utils from "@ekliptor/apputils";
const logger = utils.logger
    , nconf = utils.nconf;

with JavaScript:

const utils = require("@ekliptor/apputils");
const logger = utils.logger
    , nconf = utils.nconf;