iamyogik / url_shortner

Full Stack Web App to shorten urls using React, Node, Express & MongoDB

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

πŸ”— Urily - a simple URL Shortner Service

Version Documentation Maintenance License: ISC Twitter: soham_sm_mondal

This is the URL Shortner service build using MERN Stack

🏠 Homepage

Prerequisites

  • npm >=5.5.0

  • node >=9.3.0

Local Development

Install

Install both client and server dependencies

# Install dependencies for server
$ npm install

# Install dependencies for client
$ npm run client-install

Configuration

1. Create a nodemon.json file in project root dir

$ touch nodemon.json

2. Feed values to the file like this -

{

"env": {

"mongoURI": "",

"baseUrl": "http://localhost:5000",

"NODE_ENV": "development"

}

}

ℹ️ To get the mongoURI, you can install MongoDB locally , use MongoDB Atlas or simply use MLab.

Usage

# Run the client & server with concurrently
$ npm run dev

# Run the Express server only
$ npm run server

# Run the React client only
$ npm run client

# Server runs on http://localhost:5000 and client on http://localhost:3000

Production Deployment

There is a Heroku post build script so that you do not have to compile your React frontend manually, it is done on the server. Simply push to Heroku and it will build and load the client index.html page

Author

πŸ‘€ Soham Mondal

🀝 Contributing

Contributions, issues and feature requests are welcome!
Feel free to check issues page.

Show your support

Give a ⭐️ if this project helped you!

πŸ“ License

Copyright Β© 2019 Soham Mondal.

This project is ISC licensed.

About

Full Stack Web App to shorten urls using React, Node, Express & MongoDB


Languages

Language:JavaScript 90.1%Language:HTML 5.2%Language:CSS 4.7%