rapid-shrink

1.0.4 • Public • Published

Rapid Shrink Package

This package provides functionality to shorten and generate redirect URLs. It is designed to be simple and easy to integrate into any Node.js application.

Installation

You can install the package using npm:

npm install rapid-shrink

Usage

Generating a Shortened URL in Node.js

To generate a shortened URL, you can use the generate function provided by the package:

const { generate } = require('rapid-shrink');

(async () => {
  try {
    const link = 'https://example.com';
    const redirectUrl = await generate(link);
    console.log('Redirect URL:', redirectUrl);
  } catch (error) {
    console.error('Error:', error);
  }
})();

Generating a Shortened URL in Bash

You can use Node.js to run a JavaScript file from the command line:

Create a JavaScript file , for example : shorten.js:

const { generate } = require('rapid-shrink');

(async () => {
  try {
    const link = 'https://example.com';
    const redirectUrl = await generate(link);
    console.log('Redirect URL:', redirectUrl);
  } catch (error) {
    console.error('Error:', error);
  }
})();

Run the script using Node.js:

node shorten.js

Visit the URL

You can Visit the URL logged in the Terminal

Package Sidebar

Install

npm i rapid-shrink

Weekly Downloads

4

Version

1.0.4

License

MIT

Unpacked Size

3.93 kB

Total Files

4

Last publish

Collaborators

  • lakshaygarg