# redirekt

> simple http redirects in node

Latest version **1.1.0** (published 2016-06-14) · MIT license · 0 weekly downloads

## Install

```sh
npm install redirekt
pnpm add redirekt
yarn add redirekt
bun add redirekt
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.0 |
| Published | 2016-06-14 |
| First published | 2016-06-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | mic.com |
| Maintainers | danmakenoise |
| Keywords | node, redirect, http |

## Links

- npm: https://www.npmjs.com/package/redirekt
- Repository: https://github.com/micnews/redirekt
- Homepage: https://github.com/micnews/redirekt#readme
- Issues: https://github.com/micnews/redirekt/issues
- npm.io page: https://npm.io/package/redirekt

## Alternatives

- [@expo/fingerprint](https://npm.io/package/@expo/fingerprint.md) — 6.2M weekly downloads
- [@azure/monitor-opentelemetry-exporter](https://npm.io/package/@azure/monitor-opentelemetry-exporter.md) — 850.0K weekly downloads
- [@azure/monitor-opentelemetry](https://npm.io/package/@azure/monitor-opentelemetry.md) — 624.0K weekly downloads
- [@posthog/ai](https://npm.io/package/@posthog/ai.md) — 423.3K weekly downloads
- [fakefilter](https://npm.io/package/fakefilter.md) — 63.9K weekly downloads

## Recent versions

- 1.1.0 (latest) — 2016-06-14

## README

# redirekt [![Build Status](https://travis-ci.org/micnews/redirekt.svg?branch=master)](https://travis-ci.org/micnews/redirekt)

A library that provides a simple lightweight method for redirecting http requests in your applications!

## Installation

```shell
npm install redirekt
```

## Usage

Use `redirekt` like this: `redirekt(req, res, targetUrl)`!

```javascript
var http = require('http');
var redirekt = require('redirekt');

var server = http.createServer(function (req, res) {
  redirekt(req, res, 'http://www.themostamazingwebsiteimaginable.com');
});
```

---
_Source: https://npm.io/package/redirekt · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
