https://github.com/arjun-g/cfw-express
Cloudflare router inspired by express.js
https://github.com/arjun-g/cfw-express
Last synced: about 2 months ago
JSON representation
Cloudflare router inspired by express.js
- Host: GitHub
- URL: https://github.com/arjun-g/cfw-express
- Owner: arjun-g
- Created: 2021-04-17T19:04:35.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-04-17T20:22:59.000Z (about 4 years ago)
- Last Synced: 2025-02-21T17:50:29.343Z (2 months ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cfw-express
Cloudflare router inspired by express.js interface
```
const express = require('cfw-express')
const app = express();app.get('/', function (req, res) {
res.send('Hello World')
})app.listen()
```## Installation
Installation is done using the npm install command:
```
$ npm install cfw-express
```## Features