Skip to content

Instantly share code, notes, and snippets.

@hungdoansy
Last active January 17, 2022 03:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hungdoansy/4ef74299581ac0fe0b9d063be19413eb to your computer and use it in GitHub Desktop.
Save hungdoansy/4ef74299581ac0fe0b9d063be19413eb to your computer and use it in GitHub Desktop.
Display built time in front end projects (I use React to illustrate)
console.log(`Built time: %c${new Date(Number(process.env.REACT_APP_BUILT_TIME) * 1000)}`, "color: #bada55");
{
"start": "cross-env REACT_APP_BUILT_TIME=$(date +%s) node scripts/start.js",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment