Code Monkey home page Code Monkey logo

link-shortener's Introduction

How to use Short URL

1. install node.js app in your PC (version 18 or above)

2.Make sure your MySQL service is running in background in your PC.

3. Make sure that you have a database named shorturl with one table links in it.

> links must contain three columns
> "longurl" of varchar(100), "shorturlid" of varchar(100) & "count" of int type

4. Delete files Package.json & package-lock.json from the code folder

5. In the code folder do the following steps:

Run the following commands

    npm init
    npm install node express mysql mysql2

6. From line 9 to 24 in the code.js edit the information:

    const con = mysql.createConnection({
    host: "localhost",
    user: "YOUR_MYSQL_USERNAME_HERE",
    password: "YOUR_MYSQL_PASSWORD_HERE",
    database: "YOUR_MYSQL_DATABASE_NAME",
    authPlugins: {
        mysql_clear_password: () => () => {
          return signer.getAuthToken({
            region,
            hostname,
            port,
            username
          });
        }
      },
});

7. Run the code

    node code.js

8. Visit http://localhost:5000 to see the result

link-shortener's People

Contributors

gagan257 avatar

Stargazers

 avatar Jerome Couette avatar  avatar

Watchers

Jerome Couette avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.