Package Exports
- print-time
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (print-time) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
print-time
Add timestamp to any program/script output
https://www.npmjs.com/package/print-time
##Install:
npm i print-time --save-dev
##Usage in console:
echo "log" | node node_modules/print-time
Output:
10:11:12.345 log
##Usage in package.json script:
{
"scripts": {
...
"watch:dev": "npm run build:dev -- --watch | node node_modules/print-time"
}
}