Get express server implemented

This commit is contained in:
CentreMetre
2026-05-31 08:45:43 +01:00
parent b7cb342804
commit b270924248
3 changed files with 810 additions and 0 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "codelist",
"version": "1.0.0",
"description": "A website that generates all possible codes from a code length and a set of characters in the code.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "https://git.centremetre.com/CentreMetre/CodeList"
},
"author": "CentreMetre",
"license": "MIT",
"dependencies": {
"express": "^5.2.1"
}
}