Small demo app that serves a frontend from public/ and a simple Node server in server.js.
- Node.js (recommended v14+)
Install dependencies:
npm installStart the server:
node server.js
# or, if a start script is defined:
# npm startOpen http://localhost:3000 (or the port printed by the server).
server.js— Node/Express serverpublic/— frontend assets (containsindex.htmlandapp.js)package.json/package-lock.json— project metadata and deps
- Create a branch
- Make changes, then:
git add .
git commit -m "Describe changes"
git pushIf you get authentication errors when pushing, prefer SSH (recommended) or create a GitHub Personal Access Token (PAT) and use the macOS credential helper.
If you'd like, I can add a start script to package.json and commit it for you.