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: about 1 year ago
JSON representation
Basic helper functions for HTTP requests, file system, logging, JSON parsing and other basics of a web app.
- Host: GitHub
- URL: https://github.com/ekliptor/apputils
- Owner: Ekliptor
- License: gpl-3.0
- Created: 2018-05-28T05:29:25.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2025-04-26T23:19:12.000Z (about 1 year ago)
- Last Synced: 2025-04-30T21:08:22.693Z (about 1 year ago)
- Topics: css, css3, html, html5, mongodb, nodejs, typescript, webapp
- Language: JavaScript
- Size: 422 KB
- Stars: 2
- Watchers: 1
- Forks: 3
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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;
```