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
- Host: GitHub
- URL: https://github.com/skitsanos/njsf
- Owner: skitsanos
- License: mit
- Created: 2019-03-28T07:39:57.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-10-27T17:48:11.000Z (over 2 years ago)
- Last Synced: 2025-03-05T07:34:38.056Z (over 1 year ago)
- Topics: cli, express-js, express-middleware, expressjs, node-js, node-module, nodejs, nodejs-modules, storage-engine, web-application
- Language: JavaScript
- Size: 20.5 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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()}`);
```