Skip to content

Commit fa2e14c

Browse files
authored
fix: port binding and multiple endpoint (vercel#480)
1 parent 73dd475 commit fa2e14c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/micro/src/bin/micro.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import type { RequestHandler } from '../lib';
2020

2121
// Check if the user defined any options
2222
const args = arg({
23-
'--listen': parseEndpoint,
23+
'--listen': [parseEndpoint],
2424
'-l': '--listen',
2525
'--help': Boolean,
2626
'--version': Boolean,
@@ -142,15 +142,15 @@ function registerShutdown(fn: () => void) {
142142
process.on('exit', wrapper);
143143
}
144144

145-
function startEndpoint(module: RequestHandler, endpoint: string) {
145+
function startEndpoint(module: RequestHandler, endpoint: string[]) {
146146
const server = new http.Server(serve(module));
147147

148148
server.on('error', (err) => {
149149
console.error('micro:', err.stack);
150150
process.exit(1);
151151
});
152152

153-
server.listen(endpoint, () => {
153+
server.listen(...endpoint, () => {
154154
const details = server.address();
155155
registerShutdown(() => {
156156
console.log('micro: Gracefully shutting down. Please wait...');

0 commit comments

Comments
 (0)