JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 93
  • Score
    100M100P100Q65935F
  • License MIT

add timespamp to output

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"
    }
  }