nodejs基础一

NODEJS的由来

Node.js 诞生于2009年,Node.js采用C++语言编写而成,是 一个Javascript的运行环境。Node.js 是一个基于 Chrome V8 引擎的 JavaScript 运行环境 ,让JavaScript的运行脱离浏览器端,可以使用JavaScript语言 书写服务器端代码。

使用node来实现第一个服务器

  var http=require("http");
  var server=http.createServer(function(res,req){
        res.writeHead(200,{"Content-Type":"text/plain"});
        console.log("helloWord");
        res.end("hello World");
  })
  server.listen(8085);

在页面运行之后,然后再在浏览器上输入localhost:8085 ,这样就可以看到结果了

webpack

  • webpack的作用
    webpack:是近的一加载器兼打包工具,它能把各种资源,例如J (含J X)、 coffee、样式(含less/sass)、图片等都作为模块来使用和处理

  • webpack的使用步骤
    1、全局安装webpack:npm install webpack -g
    2、编写webpack.config.js配置文件
    // CommonJS 导出模块

    module.exports = {
        entry: __dirname + 'app/main.js', //入口文件 output: { //输出目录
        path: __dirname + 'build', // 输出路径
        filename: 'bundle.js', // 输出文件名 },
        watch:true
    };
    

    3、写我们的helloworld组件:module.exports=function(){}
    4、Main.js主入口引入:var component = require('./component.js'); document.body.appendChild(component());
    5、新建index.html引入bundle.js,运行index.html
    6、Css样式加载:一、要安装依赖npm install style-loader css-loader --save 二、配置文件中加入配置:

    module:{
          loaders:[{
              test:/\.css$/,
              loader:"style-loader!css-loader"
          }]
      }
    

你可能感兴趣的:(nodejs基础一)