Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

@contrast/express-test4-bench

An intentionally vulnerable nextjs application.

Running Locally

Make sure you have Node.js installed or install a version of Node from nvm.

git clone https://github.com/Contrast-Security-OSS/NodeTestBenches.git # or clone your own fork cd NodeTestBenches/express npm install # run in development mode npm run dev # or build and run in production mode npm run build && npm start

Your app should now be running on localhost:3000.

Running Locally Using Docker

Build the Docker container with the following CLI command:

docker build . -t <container name>

Run the container by running:

docker run -p 3000:3000 <container name>