TinyApp is a full stack web application built with Node and Express that allows users to shorten long URLs (à la bit.ly).
- Node.js
- Express
- EJS
- bcrypt
- body-parser
- cookie-session
- Install all dependencies (using the
npm installcommand). - Run the development web server using the
node express_server.jscommand.
- Encrypted session
- Hashed password storage
- Saved URLs per user
The main page has a list of all the URLs we have shortened. We can choose to edit them or delete them from here.
This page lets us shorten an URL. The shortened URL will be saved onto our main page.
The edit page lets us change the shortened URL to point to another URL.
The user must login before they can shortened URLs.
The user can register for an new account if they do not have one.