Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ekliptor/apputils

Basic helper functions for HTTP requests, file system, logging, JSON parsing and other basics of a web app.
https://github.com/ekliptor/apputils

css css3 html html5 mongodb nodejs typescript webapp

Last synced: 2 months ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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;
```