This project sets up a local Node.js server using Express to serve static resources from the /browserscore/ directory.
/browserscore/
├── localserver # Node server to start the project locally
├── app/ # Static resources for app
├── features/ # The feature data (specs, features, tests, etc.)
└── supports/ # Code to test support for certain CSS, JS, HTML syntax
1. Navigate to the server directory:
cd /browserscore/localserver/2. Install dependencies:
npm installStart the server with:
node server.jsor, if you have a start script in package.json:
npm startor with nodemon to automatically restart the server when files change:
npm run devThe server will start on http://localhost:3000.
This server is intended for local development.