摘要:
声明:此文章是为了日后方便查看做的简单的总结,仅供参考! 一、nodeJs是什么? nodeJs其实是一个js的运行环境,属于后端语言, node.Js是一个基于Chrome V8引擎的JavaScript运行环境 nodeJs使用了一个事件驱动以及非阻塞的I/O式模式,使其轻量又高效 node中的 阅读全文
摘要:
//引入核心模块 const http = require('http'); //创建服务器 http.createServer((req,res)=>{ }).listen(3000); //引入核心模块 const http = require("http"); //创建服务器 http.createServer((req,res)=>{ console.log(req... 阅读全文
摘要:
全局安装脚手架 cnpm install vue-cli -g 查询安装版本 vue -V 初始化项目 vue init webpack 项目名字 项目初始化完成 ******************************************************************** 阅读全文