Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Latest commit

 

History

History
33 lines (23 loc) · 776 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 776 Bytes

simple-redirect-server

A simple redirect server used for redirecting old to new sites using a csv file. See example folder for more information.

Install

$ npm install @region-halland/simple-redirect-server

Usage

var srs = require('@region-halland/simple-redirect-server');

//Init server
srs.init({
    portListen: 1337, //HTTP server will listen on this port
    httpStatusCode: 301, //This will be the http code used for redirections
    csvFile: __dirname + "/redirects.csv" //Path to csv file used for redirections
});

Example

See example folder for an example.

Q&A

How should my .csv file be structured to work?

See the redirect.csv file inside example folder.

License

GPL-2.0 © Region Halland