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

https://github.com/skitsanos/njsf

Nodejs Framework - Set of most frequently used components for web and cli applications
https://github.com/skitsanos/njsf

cli express-js express-middleware expressjs node-js node-module nodejs nodejs-modules storage-engine web-application

Last synced: 2 months ago
JSON representation

Nodejs Framework - Set of most frequently used components for web and cli applications

Awesome Lists containing this project

README

          

# njsf
Nodejs Framework - Set of most frequently used components for web and cli applications

## Utils

### execTime

```js
const execTime = require(path.join(process.cwd(), 'njsf/utils/execTime'));
const et = new execTime();

//put some code to execute here

console.log(`execution time ${et.duration()}`);

```