Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/karolinacodes/tinyapp
A simple URL shortener app that takes a regular URL and transforms it into an encoded version (similar to bit.ly).
https://github.com/karolinacodes/tinyapp
bcrypt body-parser bootstrap cookie-session ejs expressjs nodejs
Last synced: about 1 month ago
JSON representation
A simple URL shortener app that takes a regular URL and transforms it into an encoded version (similar to bit.ly).
- Host: GitHub
- URL: https://github.com/karolinacodes/tinyapp
- Owner: karolinaCodes
- Created: 2021-11-08T18:10:36.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2021-11-11T15:19:34.000Z (about 3 years ago)
- Last Synced: 2023-08-08T14:38:02.590Z (over 1 year ago)
- Topics: bcrypt, body-parser, bootstrap, cookie-session, ejs, expressjs, nodejs
- Language: EJS
- Homepage:
- Size: 528 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TinyApp
TinyApp is a simple URL shortener app that takes a regular URL and transforms it into an encoded version (similar to [bit.ly](https://bitly.com/)).
Built with Node and Express for the back end, and EJS and Bootstrap for the front-end.## Final Product
!["screenshot of URLS page"](./docs/urls_register.jpeg)
Create an account to begin creating tinyURLS! 🍾!["screenshot of home page"](./docs/urls_index.jpeg)
Once registered or logged in, you can view your home page where all of your tinyURLS are displayed. Here, you also have the option to edit or delete them. ⚙️!["screenshot of create new url page"](./docs/urls_new.jpeg)
Click "Create New URL" in the nav bar to be directed to the this page where you can create a new tinyURL! ✨!["screenshot of selected url page"](./docs/urls_show.jpeg)
You can view the data for a specific tinyURL on this page which will appear after creating a new tinyURL or after clicking "edit" on a tinyURL from the home page. Here, you can also visit the webite for which you created the tinyURL URL by clicking the tinyURL link. 🔍!["screenshot of login page"](./docs/urls_login.jpeg)
All your URLS are safe and secure in your own account. Our system ensures to keep your tinyURLS safe from any hackers. When you choose to log out of your account, you will be prompted to log back in. 🔑## 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.