Skip to content

Latest commit

History

History
31 lines (23 loc) 路 944 Bytes

File metadata and controls

31 lines (23 loc) 路 944 Bytes

@application/react-application

A react application.

Stack

  • Jest - JavaScript testing framework.
  • React - JavaScript library for building user interfaces.
  • Testing Library - Testing utilities.
  • TypeScript - A typed superset of JavaScript that compiles to plain JavaScript.

To Do

  • update package.json manifest description
  • update README.md title
  • update README.md description
  • add package to root README.md structure
  • update port number
  • remove this checklist
import("node:crypto").then(({ createHash }) => {
  const input = "<package.name>";

  const hashRaw = createHash("whirlpool").update(input);
  const hashHex = hashRaw.digest("hex");
  const hashInt = parseInt(hashHex, 16) % Math.pow(10, 4);

  console.log(hashInt);
});