Skip to content

Commit 05c5718

Browse files
committed
upgrade deps, dates, CI.. convert package to a ES6 module
1 parent b8822da commit 05c5718

13 files changed

+1672
-2190
lines changed

.github/workflows/node.js.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
2+
3+
name: Node.js CI
4+
5+
on:
6+
push:
7+
branches: [ master ]
8+
pull_request:
9+
branches: [ master ]
10+
11+
jobs:
12+
build:
13+
14+
runs-on: ${{ matrix.os }}
15+
16+
strategy:
17+
matrix:
18+
os: [ubuntu-latest, windows-latest]
19+
node-version: [12, 14, 16, 18, 20, 22]
20+
21+
steps:
22+
- uses: actions/checkout@v4
23+
- name: Use Node.js ${{ matrix.node-version }}
24+
uses: actions/setup-node@v4
25+
with:
26+
node-version: ${{ matrix.node-version }}
27+
cache: 'npm'
28+
- run: npm install
29+
run: npm test

.travis.yml

-5
This file was deleted.

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016-20 Lloyd Brookes <[email protected]>
3+
Copyright (c) 2016-24 Lloyd Brookes <[email protected]>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
[![npm module downloads](https://badgen.net/npm/dt/lws-rewrite)](https://www.npmjs.org/package/lws-rewrite)
33
[![Gihub repo dependents](https://badgen.net/github/dependents-repo/lwsjs/rewrite)](https://github.com/lwsjs/rewrite/network/dependents?dependent_type=REPOSITORY)
44
[![Gihub package dependents](https://badgen.net/github/dependents-pkg/lwsjs/rewrite)](https://github.com/lwsjs/rewrite/network/dependents?dependent_type=PACKAGE)
5-
[![Build Status](https://travis-ci.org/lwsjs/rewrite.svg?branch=master)](https://travis-ci.org/lwsjs/rewrite)
6-
[![Coverage Status](https://coveralls.io/repos/github/lwsjs/rewrite/badge.svg)](https://coveralls.io/github/lwsjs/rewrite)
5+
[![Node.js CI](https://github.com/lwsjs/rewrite/actions/workflows/node.js.yml/badge.svg)](https://github.com/lwsjs/rewrite/actions/workflows/node.js.yml)
76
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](https://github.com/feross/standard)
87

98
# lws-rewrite
@@ -20,4 +19,4 @@ Adds the following options to lws.
2019

2120
* * *
2221

23-
&copy; 2016-20 Lloyd Brookes \<[email protected]\>.
22+
&copy; 2016-24 Lloyd Brookes \<[email protected]\>.

bin/cli.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env node
2-
const util = require('../lib/util')
2+
import util from '../lib/util.js'
33
const [from, to, url] = process.argv.slice(2)
44

55
if (!(from && to && url)) {

index.js

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1-
const EventEmitter = require('events')
2-
const util = require('./lib/util')
1+
import { EventEmitter } from 'events'
2+
import util from './lib/util.js'
3+
import url from 'url'
4+
import _ from 'koa-route'
5+
import HttpsProxyAgent from 'https-proxy-agent'
6+
import HttpProxyAgent from 'http-proxy-agent'
7+
import http from 'http'
8+
import https from 'https'
39

410
class Rewrite extends EventEmitter {
511
description () {
@@ -25,8 +31,6 @@ class Rewrite extends EventEmitter {
2531
}
2632

2733
middleware (options, lws) {
28-
const url = require('url')
29-
const util = require('./lib/util')
3034
const rules = util.parseRewriteRules(options.rewrite)
3135
if (rules.length) {
3236
this.emit('verbose', 'middleware.rewrite.config', { rewrite: rules })
@@ -35,7 +39,6 @@ class Rewrite extends EventEmitter {
3539
if (rule.to) {
3640
/* `to` address is remote if the url specifies a host */
3741
if (url.parse(rule.to).host) {
38-
const _ = require('koa-route')
3942
return _.all(rule.from, proxyRequest(rule, this, lws))
4043
} else {
4144
const rmw = rewrite(rule.from, rule.to, this)
@@ -53,15 +56,12 @@ function proxyRequest (route, mw, lws) {
5356
let httpProxyAgent, httpsProxyAgent
5457
const httpProxy = process.env.http_proxy
5558
if (httpProxy) {
56-
const HttpsProxyAgent = require('https-proxy-agent')
5759
httpsProxyAgent = new HttpsProxyAgent(httpProxy)
58-
const HttpProxyAgent = require('http-proxy-agent')
5960
httpProxyAgent = new HttpProxyAgent(httpProxy)
6061
}
6162

6263
return function proxyMiddleware (ctx) {
6364
return new Promise((resolve, reject) => {
64-
const url = require('url')
6565
const isHttp2 = ctx.req.httpVersion === '2.0'
6666
ctx.state.id = id++
6767

@@ -111,20 +111,20 @@ function proxyRequest (route, mw, lws) {
111111
remoteReqOptions.headers = reqInfo.headers
112112
remoteReqOptions.rejectUnauthorized = false
113113

114+
/* emit verbose info */
115+
mw.emit('verbose', 'middleware.rewrite.remote.request', reqInfo)
116+
114117
const protocol = remoteReqOptions.protocol
115118
if (protocol === 'http:') {
116-
transport = require('http')
119+
transport = http
117120
remoteReqOptions.agent = httpProxyAgent
118121
} else if (protocol === 'https:') {
119-
transport = require('https')
122+
transport = https
120123
remoteReqOptions.agent = httpsProxyAgent
121124
} else {
122125
return reject(new Error('Protocol missing from request: ' + reqInfo.rewrite.to))
123126
}
124127

125-
/* emit verbose info */
126-
mw.emit('verbose', 'middleware.rewrite.remote.request', reqInfo)
127-
128128
const remoteReq = transport.request(remoteReqOptions, (remoteRes) => {
129129
remoteRes.headers.via = remoteRes.headers.via
130130
? `${remoteRes.headers.via}, 1.1 lws-rewrite`
@@ -177,4 +177,4 @@ function rewrite (from, to, mw) {
177177
}
178178
}
179179

180-
module.exports = Rewrite
180+
export default Rewrite

lib/util.js

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
function parseRewriteRules (rules) {
2-
const arrayify = require('array-back')
1+
import arrayify from 'array-back'
2+
import { pathToRegexp } from 'path-to-regexp'
33

4+
function parseRewriteRules (rules) {
45
return arrayify(rules).map(rule => {
56
if (typeof rule === 'string') {
67
const matches = rule.match(/(\S*)\s*->\s*(\S*)/)
@@ -16,7 +17,6 @@ function parseRewriteRules (rules) {
1617
}
1718

1819
function getTargetUrl (from, to, url) {
19-
const { pathToRegexp } = require('path-to-regexp')
2020
const fromParams = []
2121
const re = pathToRegexp(from, fromParams)
2222
const fromMatches = re.exec(url)
@@ -67,7 +67,5 @@ function removeCookieAttribute (cookie = '', attr) {
6767
.join('; ')
6868
}
6969

70-
exports.parseRewriteRules = parseRewriteRules
71-
exports.getTargetUrl = getTargetUrl
72-
exports.removeHopSpecificHeaders = removeHopSpecificHeaders
73-
exports.removeCookieAttribute = removeCookieAttribute
70+
export { parseRewriteRules, getTargetUrl, removeHopSpecificHeaders, removeCookieAttribute }
71+
export default { parseRewriteRules, getTargetUrl, removeHopSpecificHeaders, removeCookieAttribute }

0 commit comments

Comments
 (0)