Skip to content
This repository was archived by the owner on Mar 9, 2025. It is now read-only.

Commit 5e158f4

Browse files
committed
Upgrade to babel 7 and fix deps
1 parent 74824ad commit 5e158f4

File tree

5 files changed

+1773
-948
lines changed

5 files changed

+1773
-948
lines changed

.babelrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"presets": ["env"]
2+
"presets": ["@babel/preset-env"]
33
}

lib/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
import http from 'http';
22

3-
http.createServer((req, res) => {
3+
const server = http.createServer((req, res) => {
44
res.writeHead(200, {'Content-Type': 'text/plain'});
55
res.end('Hello World\n');
66
}).listen(1337, '127.0.0.1');
77

88
console.log('Server running at http://127.0.0.1:1337/');
9+
10+
export default server;

0 commit comments

Comments
 (0)