zoukankan      html  css  js  c++  java
  • NodeJs学习(一)

    么是NodeJS?

    nodeJs是单线程、异步、事件驱动

    特点:快、消耗内存多(一个百万级的并发测试,在未优化情况下1M连接消耗了16G内存)

    优点:性能高、开发效率高(省不少优化的事)、应用范围广(可以开发桌面系统)

    缺点:中间件少、IDE不完善。

    热门框架:Express(完善,稳点,文档全,社区大)

     创建一个Serve?

    var http = require("http");

    http.createServer(function(requset,response){

      response.writeHead(200,{'Content-Type':'text/html; charset=utf-8'});//第一个参数为状态码,第二个参数确定是什么文件.

      if (request.url !== '/favicon.ico'){ //通过IF语句判断屏蔽404错误

      response.write('hello word');//准备给前端写内容,可以写好多write

      response.end(); //向前端返回数据

      }

    }).listen(8000);

    console.log('Server running at http://localhost:8000');

    CommonJS?

    可以新建一个name.js的文件用commonJS规范写

    module.exports = {

      name:"zhangsan",

      sayName:function(){

        return this.name;

      }

    }

    在前面创建server的文件里写

    var name = require("./name,js");   //引入暴露的模块

     response.write(name.sayName());

  • 相关阅读:
    cocos3 单击
    cocos3 帧动画
    cocos3 动作和帧动画
    cocos3 场景切换特效
    cocos3 场景切换
    cocos3 error C2440
    c++ 匿名函数
    【leetcode】生成每种字符都是奇数个的字符串
    【leetcode】山羊拉丁文
    【leetcode】字符串的最大公因子
  • 原文地址:https://www.cnblogs.com/dxsghr/p/6802959.html
Copyright © 2011-2022 走看看