TinyApp is a full stack web application built with Node and Express that allows registered users to shorten long URLs (à la bit.ly).
Users need to register to gain access to URL shortening feature and start logging URLs.
Clicking on shortened URL or short URL or through visiting /u/:shorturl will redirect to the original site. App keeps track of total visits to sites using the shortened URL.
Logged in users may edit and delete their URLs.
- Node.js
- Express
- EJS
- bcrypt
- body-parser
- cookie-session
- Install all dependencies (using the
npm install
command). - Run the development web server using the
node express_server.js
command.