mirror of
https://github.com/wuchangming/spy-debugger.git
synced 2026-01-18 14:29:45 +00:00
17 lines
276 B
JavaScript
17 lines
276 B
JavaScript
const http = require('http');
|
|
|
|
console.log(11);
|
|
var client = new http.ClientRequest({
|
|
protocol: 'http:',
|
|
hostname: '192.168.1.103',
|
|
method: 'GET',
|
|
port: '56047',
|
|
path: '/target/target-script-min.js'
|
|
|
|
}, (res) => {
|
|
console.log(res);
|
|
|
|
});
|
|
|
|
client.end();
|