A NodeJS programming challenge.
The goal here is to create a simple web application that allows someone to create a message, view that message at a unique URL, and destroy the message upon viewing it. Just like the title states, this message will self-destruct!
Fork this repository, clone it, install dependencies, and run it.
git clone {{your_fork_url_here}}
npm install
node app.js
Complete the following requirements by using any database engine of your choice. Update this readme by checking the following boxes as you go.
- As a user, I should see a form to create a new message on the homepage.
- As a user, I should see a list of links for all created messages below the 'new message' form on the homepage.
- As a user, when I click a link in the message list, I should be able to view the message at a unique URL.
- As a user, when I open a message, the message should self-destruct (delete from the database).
- As a user, I should no longer see messages on the homepage that have been viewed.
Two more things:
- Remember to add documentation to your README so the app can be installed and run locally for review.
- Bonus points for making it look pretty ✨
Send an email with a link to your fork when finished. Thanks!
A NodeJS programming challenge.
- Fork this repository, clone it, install dependencies, and run it.
git clone https://github.com/albertboyd/tmwsd_challenge
cd tmwsd_challenge
npm install
node app.js