Sunday, 16 April 2017

How can I solve this bug about nodejs

var fs = require('fs');
var http = require('http');

var server = http.createServer(function(req,res) {

   if (req.url == '/favicon.ico') return;

    fs.mkdir('./test1/aaa');


}).listen(3000,'127.0.0.1');



via DYjh

No comments:

Post a Comment