A solid application.
- Jest - JavaScript testing framework.
- SolidJS - JavaScript library for building user interfaces.
- Testing Library - Testing utilities.
- TypeScript - A typed superset of JavaScript that compiles to plain JavaScript.
- 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);
});