mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-20 10:19:02 +00:00
💄
This commit is contained in:
@@ -6,7 +6,9 @@
|
||||
const httpServer = require('http-server');
|
||||
const opn = require('opn');
|
||||
|
||||
httpServer.createServer({ root: '.', cache: 5 }).listen(8080);
|
||||
console.log('LISTENING on 8080');
|
||||
const url = 'http://127.0.0.1:8080/out/vs/code/browser/workbench/workbench.html';
|
||||
|
||||
opn('http://127.0.0.1:8080/out/vs/code/browser/workbench/workbench.html');
|
||||
httpServer.createServer({ root: '.', cache: 5 }).listen(8080);
|
||||
console.log(`Open ${url} in your browser`);
|
||||
|
||||
opn(url);
|
||||
Reference in New Issue
Block a user