https://github.com/muskanmi/url-shortener
A URL shortening webapp which can be used to shorten any given URL.
https://github.com/muskanmi/url-shortener
bootstrap css expressjs html mongodb nodejs url-shortener
Last synced: 6 months ago
JSON representation
A URL shortening webapp which can be used to shorten any given URL.
- Host: GitHub
- URL: https://github.com/muskanmi/url-shortener
- Owner: muskanmi
- Created: 2022-08-04T19:02:06.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-08-04T19:06:15.000Z (about 3 years ago)
- Last Synced: 2025-02-15T09:47:17.085Z (8 months ago)
- Topics: bootstrap, css, expressjs, html, mongodb, nodejs, url-shortener
- Language: EJS
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# URL Shortener
This repository contains the source code of a simple URL shortening web application which is used to shorten any URL.
## Prerequisites:
* Node should be installed in your system.
* Mongo should be installed in your system (which is used for creating the database of this application).
## Instructions:
1. Get the source code on your pc via git and navigate inside the folder through your terminal.
```
git clone https://github.com/muskanmi/url-shortener
```2. Move into the src folder by running:
```
cd src
```3. Now, install all the required node dependencies by running:
```
npm install
```4. Run the application using:
```
npm run devStart
```5. URL shortener web application is ready for use. You can access it at [http://localhost:5000/](http://localhost:5000/).