Skip to content

Latest commit

 

History

History
49 lines (31 loc) · 1.47 KB

File metadata and controls

49 lines (31 loc) · 1.47 KB

TinyApp Project

TinyApp is a full stack web application built with Node and Express that allows users to shorten long URLs (à la bit.ly).

Dependencies

  • Node.js
  • Express
  • EJS
  • bcrypt
  • body-parser
  • cookie-session

Getting Started

  • Install all dependencies (using the npm install command).
  • Run the development web server using the node express_server.js command.

Features

  • Encrypted session
  • Hashed password storage
  • Saved URLs per user

Final Product

"Main screen after logging in." The main page has a list of all the URLs we have shortened. We can choose to edit them or delete them from here.


"Page to generate a new short URL." This page lets us shorten an URL. The shortened URL will be saved onto our main page.


"Page to replace the actual URL for a the given short URL." The edit page lets us change the shortened URL to point to another URL.


"Login page for Tiny App." The user must login before they can shortened URLs.


"New User Registration page." The user can register for an new account if they do not have one.