The goal of the project is to read, write, update and delete the file.
Used technologies: Express
- Install dependencies with
npm install - Run the express server with
npm start - Open your browser in
localhost:3000and try the example REST endpoints.
Used endpoints:
localhost:3000(GET) - read filelocalhost:3000/post(POST) - write file- Body format: text
localhost:3000/patch(PATCH) - update file- Body format: text
localhost:3000/delete(DELETE) - delete file