-
-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
86a5f76
commit 070916b
Showing
5 changed files
with
266 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,85 +37,101 @@ jobs: | |
- name: Node.js 0.8 | ||
node-version: "0.8" | ||
npm-i: [email protected] [email protected] | ||
npm-rm: nyc | ||
npm-rm: nyc typescript @types/node | ||
|
||
- name: Node.js 0.10 | ||
node-version: "0.10" | ||
npm-i: [email protected] [email protected] [email protected] | ||
npm-rm: typescript @types/node | ||
|
||
- name: Node.js 0.12 | ||
node-version: "0.12" | ||
npm-i: [email protected] [email protected] [email protected] | ||
npm-rm: typescript @types/node | ||
|
||
- name: io.js 1.x | ||
node-version: "1.8" | ||
npm-i: [email protected] [email protected] [email protected] | ||
npm-rm: typescript @types/node | ||
|
||
- name: io.js 2.x | ||
node-version: "2.5" | ||
npm-i: [email protected] [email protected] [email protected] | ||
npm-rm: typescript @types/node | ||
|
||
- name: io.js 3.x | ||
node-version: "3.3" | ||
npm-i: [email protected] [email protected] [email protected] | ||
npm-rm: typescript @types/node | ||
|
||
- name: Node.js 4.x | ||
node-version: "4.9" | ||
npm-i: [email protected] [email protected] [email protected] | ||
npm-rm: typescript @types/node | ||
|
||
- name: Node.js 5.x | ||
node-version: "5.12" | ||
npm-i: [email protected] [email protected] [email protected] | ||
npm-rm: typescript @types/node | ||
|
||
- name: Node.js 6.x | ||
node-version: "6.17" | ||
npm-i: [email protected] [email protected] [email protected] | ||
npm-rm: typescript @types/node | ||
|
||
- name: Node.js 7.x | ||
node-version: "7.10" | ||
npm-i: [email protected] [email protected] [email protected] | ||
npm-rm: typescript @types/node | ||
|
||
- name: Node.js 8.x | ||
node-version: "8.17" | ||
npm-i: [email protected] | ||
npm-i: [email protected] @types/node@^8.0.0 | ||
|
||
- name: Node.js 9.x | ||
node-version: "9.11" | ||
npm-i: [email protected] | ||
npm-i: [email protected] @types/node@^9.0.0 | ||
|
||
- name: Node.js 10.x | ||
node-version: "10.24" | ||
npm-i: [email protected] | ||
npm-i: [email protected] @types/node@^10.0.0 | ||
|
||
- name: Node.js 11.x | ||
node-version: "11.15" | ||
npm-i: [email protected] | ||
npm-i: [email protected] @types/node@^11.0.0 | ||
|
||
- name: Node.js 12.x | ||
node-version: "12.22" | ||
npm-i: [email protected] | ||
npm-i: [email protected] @types/node@^12.0.0 | ||
|
||
- name: Node.js 13.x | ||
node-version: "13.14" | ||
npm-i: [email protected] | ||
npm-i: [email protected] @types/node@^13.0.0 | ||
|
||
- name: Node.js 14.x | ||
node-version: "14.21" | ||
node-version: "14.21" | ||
npm-i: \@types/node@^14.0.0 | ||
|
||
- name: Node.js 15.x | ||
node-version: "15.14" | ||
npm-i: \@types/node@^15.0.0 | ||
|
||
- name: Node.js 16.x | ||
node-version: "16.19" | ||
npm-i: \@types/node@^16.0.0 | ||
|
||
- name: Node.js 17.x | ||
node-version: "17.9" | ||
npm-i: \@types/node@^17.0.0 | ||
|
||
- name: Node.js 18.x | ||
node-version: "18.14" | ||
npm-i: \@types/node@^18.0.0 | ||
|
||
- name: Node.js 19.x | ||
node-version: "19.7" | ||
npm-i: \@types/node@^18.0.0 # no 19 as yet | ||
|
||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
@@ -182,6 +198,14 @@ jobs: | |
npm test | ||
fi | ||
- name: Test type definition | ||
shell: bash | ||
run: | | ||
# testing types requires >= node@8 | ||
if [[ "$(cut -d. -f1 <<< "${{ matrix.node-version }}")" -ge 8 ]]; then | ||
npm run test-types | ||
fi | ||
- name: Lint code | ||
if: steps.list_env.outputs.eslint != '' | ||
run: npm run lint | ||
|
@@ -194,6 +218,7 @@ jobs: | |
mkdir ./coverage | ||
mv "./${{ matrix.name }}" "./coverage/${{ matrix.name }}" | ||
fi | ||
- name: Upload code coverage | ||
uses: actions/upload-artifact@v3 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
|
||
import { OutgoingMessage } from "http"; | ||
|
||
export default Router; | ||
|
||
type HttpMethods = | ||
'get' | | ||
'post' | | ||
'put' | | ||
'head' | | ||
'delete' | | ||
'options' | | ||
'trace' | | ||
'copy' | | ||
'lock' | | ||
'mkcol' | | ||
'move' | | ||
'purge' | | ||
'propfind' | | ||
'proppatch' | | ||
'unlock' | | ||
'report' | | ||
'mkactivity' | | ||
'checkout' | | ||
'merge' | | ||
'm-search' | | ||
'notify' | | ||
'subscribe' | | ||
'unsubscribe' | | ||
'patch' | | ||
'search' | | ||
'connect' | ||
|
||
export interface RouterOptions { | ||
strict?: boolean; | ||
caseSensitive?: boolean; | ||
mergeParams?: boolean; | ||
} | ||
|
||
export interface IncomingRequest { | ||
url?: string; | ||
method?: string; | ||
originalUrl?: string; | ||
params?: Record<string, string>; | ||
} | ||
|
||
export interface RoutedRequest extends IncomingRequest { | ||
baseUrl: string; | ||
next?: NextFunction; | ||
route?: IRoute; | ||
} | ||
|
||
export interface NextFunction { | ||
(err?: any): void; | ||
} | ||
|
||
type IRoute = Record<HttpMethods, IRouterHandler<IRoute>> & { | ||
path: string; | ||
all: IRouterHandler<IRoute>; | ||
} | ||
|
||
type RequestParamHandler = ( | ||
req: IncomingRequest, | ||
res: OutgoingMessage, | ||
next: NextFunction, | ||
value: string, | ||
name: string | ||
) => void; | ||
|
||
export interface RouteHandler { | ||
(req: RoutedRequest, res: OutgoingMessage, next: NextFunction): void; | ||
} | ||
|
||
export interface RequestHandler { | ||
(req: IncomingRequest, res: OutgoingMessage, next: NextFunction): void; | ||
} | ||
|
||
type ErrorRequestHandler = ( | ||
err: any, | ||
req: IncomingRequest, | ||
res: OutgoingMessage, | ||
next: NextFunction | ||
) => void; | ||
|
||
type PathParams = string | RegExp | Array<string | RegExp>; | ||
|
||
type RequestHandlerParams = | ||
| RouteHandler | ||
| ErrorRequestHandler | ||
| Array<RouteHandler | ErrorRequestHandler>; | ||
|
||
interface IRouterMatcher<T> { | ||
(path: PathParams, ...handlers: RouteHandler[]): T; | ||
(path: PathParams, ...handlers: RequestHandlerParams[]): T; | ||
} | ||
|
||
interface IRouterHandler<T> { | ||
(...handlers: RouteHandler[]): T; | ||
(...handlers: RequestHandlerParams[]): T; | ||
} | ||
|
||
type IRouter = Record<HttpMethods, IRouterMatcher<IRouter>> & { | ||
param(name: string, handler: RequestParamHandler): IRouter; | ||
param( | ||
callback: (name: string, matcher: RegExp) => RequestParamHandler | ||
): IRouter; | ||
all: IRouterMatcher<IRouter>; | ||
use: IRouterHandler<IRouter> & IRouterMatcher<IRouter>; | ||
handle: RequestHandler; | ||
route(prefix: PathParams): IRoute; | ||
} | ||
|
||
interface RouterConstructor { | ||
new (options?: RouterOptions): IRouter & RequestHandler; | ||
(options?: RouterOptions): IRouter & RequestHandler; | ||
} | ||
|
||
declare var Router: RouterConstructor; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
import { createServer, OutgoingMessage } from 'http'; | ||
import Router, { | ||
RouterOptions, | ||
RouteHandler, | ||
NextFunction, | ||
RoutedRequest, | ||
IncomingRequest | ||
} from '..'; | ||
|
||
const options: RouterOptions = { | ||
strict: false, | ||
caseSensitive: false, | ||
mergeParams: false | ||
}; | ||
|
||
// new constructor | ||
new Router().all('/', (req, res, next) => {}) | ||
// direct call | ||
Router().all('/', (req, res, next) => {}) | ||
|
||
const router = new Router(options); | ||
const routerHandler: RouteHandler = (req, res, next) => { | ||
res.setHeader('Content-Type', 'plain/text'); | ||
res.write('Hello') | ||
res.end('world') | ||
}; | ||
|
||
// test verb methods | ||
router.get('/', routerHandler); | ||
router.post('/', routerHandler); | ||
router.delete('/', routerHandler); | ||
router.patch('/', routerHandler); | ||
router.options('/', routerHandler); | ||
router.head('/', routerHandler); | ||
router.bind('/', routerHandler); | ||
router.connect('/', routerHandler); | ||
router.trace('/', routerHandler); | ||
router['m-search']('/', routerHandler); | ||
|
||
|
||
// param | ||
router.param('user_id', (req, res, next, id) => { | ||
type TReq = Expect<Equal<typeof req, IncomingRequest>> | ||
type TRes = Expect<Equal<typeof res, OutgoingMessage>> | ||
type TNext = Expect<Equal<typeof next, NextFunction>> | ||
type P1 = Expect<Equal<typeof id, string>> | ||
}); | ||
|
||
// middleware | ||
router.use((req, res, next) => { | ||
type TReq = Expect<Equal<typeof req, RoutedRequest>> | ||
type TRes = Expect<Equal<typeof res, OutgoingMessage>> | ||
type TNext = Expect<Equal<typeof next, NextFunction>> | ||
next(); | ||
}); | ||
|
||
|
||
router.route('/') | ||
.all((req, res, next) => { | ||
type TReq = Expect<Equal<typeof req, RoutedRequest>> | ||
type TRes = Expect<Equal<typeof res, OutgoingMessage>> | ||
type TNext = Expect<Equal<typeof next, NextFunction>> | ||
next(); | ||
}) | ||
.get((req, res, next) => { | ||
type TReq = Expect<Equal<typeof req, RoutedRequest>> | ||
type TRes = Expect<Equal<typeof res, OutgoingMessage>> | ||
type TNext = Expect<Equal<typeof next, NextFunction>> | ||
}); | ||
|
||
|
||
// valid for router from createServer | ||
var server = createServer(function(req, res) { | ||
router(req, res, (err) => {}) | ||
router.handle(req, res, (err) => {}) | ||
}) | ||
|
||
|
||
// Type test helper methods | ||
type Compute<T> = T extends (...args: any[]) => any ? T : { [K in keyof T]: Compute<T[K]> } | ||
|
||
type Equal<X, Y> = (<T>() => T extends Compute<X> ? 1 : 2) extends <T>() => T extends Compute<Y> ? 1 : 2 ? true : false | ||
|
||
type Expect<T extends true> = T extends true ? true : never |
Oops, something went wrong.