随笔分类 -  Nodejs

Hi 5
Nodejs in Visual Studio Code 14.IISNode与IIS7.x
摘要:1.开始 部署IISNode环境请参考:Nodejs in Visual Studio Code 08.IIS 部署Nodejs程序请参考:Nodejs in Visual Studio Code 10.IISNode IISNode版本:v0.2.21 2.IIS 7.x 目前版本v0.2.21默 阅读全文
posted @ 2016-05-26 16:03 赵云会编程 阅读(206) 评论(0) 推荐(0)
Nodejs in Visual Studio Code 13.构建单页应用Scrat示例挖一挖
摘要:1.开始 Scrat作者说要搞个很碉堡的示例,果然就搞出来了,如果要学习并使用Scrat,可以从官方示例开始,简直太方便了。 2.Scrat示例 目录 component_modules : 公共组件 components : 系统级组件 server : 一些服务,不用管 views : Scra 阅读全文
posted @ 2016-05-13 16:40 赵云会编程 阅读(401) 评论(0) 推荐(0)
Nodejs in Visual Studio Code 12.构建单页应用Scrat实践
摘要:1.开始 随着前端工程化深入研究,前端工程师现在碉堡了,甚至搞了个自己的前端网站http://div.io/需要邀请码才能注册,不过里面的技术确实牛。距离顶级的前端架构,目前博主应该是far away,幸运的是现在有很多前端大神积极的分享自己的经验,比如百度这位https://github.com/ 阅读全文
posted @ 2016-05-13 14:25 赵云会编程 阅读(1117) 评论(1) 推荐(3)
Nodejs in Visual Studio Code 11.前端工程优化
摘要:1.开始 随着互联网技术的发展,企业应用里到处都是B/S设计,我有幸经历了很多项目有Asp.Net的,有Html/js的,有Silverlight的,有Flex的。很遗憾这些项目很少关注前端优化的问题,而将所有的100%的对性能关注集中于业务设计、第三方平台、数据库等方面,然而我想说只要拿出1%的精 阅读全文
posted @ 2016-05-12 19:30 赵云会编程 阅读(1018) 评论(1) 推荐(3)
Nodejs in Visual Studio Code 10.IISNode
摘要:1.开始 Nodejs in Visual Studio Code 08.IIS : http://www.cnblogs.com/mengkzhaoyun/p/5410185.html 参考此篇内容,部署一个iisnode示例 2.将Node.js Express框架示例程序部署在IISNode中 阅读全文
posted @ 2016-04-21 00:02 赵云会编程 阅读(2058) 评论(3) 推荐(2)
Nodejs in Visual Studio Code 09.企业网与CNPM
摘要:1.开始 CNPM : https://npm.taobao.org/ 2.企业网HTTP代理上网 平时办公在一个大企业网(10.*.*.*)中,使用HTTP代理上网,发现npm命令无法执行。 解决方案如下: 1.安装并设置好Proxifier,https://www.proxifier.com P 阅读全文
posted @ 2016-04-19 22:39 赵云会编程 阅读(430) 评论(0) 推荐(0)
Nodejs in Visual Studio Code 08.IIS
摘要:1.开始 本文部分内容均转载自文章: http://www.hanselman.com/blog/InstallingAndRunningNodejsApplicationsWithinIISOnWindowsAreYouMad.aspx https://github.com/tjanczuk/ii 阅读全文
posted @ 2016-04-19 22:24 赵云会编程 阅读(863) 评论(0) 推荐(1)
Nodejs in Visual Studio Code 07.学习Oracle
摘要:1.开始 Node.js:https://nodejs.org OracleDB: https://github.com/oracle/node-oracledb/blob/master/INSTALL.md#instwin https://github.com/oracle/node-oracle 阅读全文
posted @ 2016-04-18 21:34 赵云会编程 阅读(758) 评论(0) 推荐(0)
Nodejs in Visual Studio Code 06.新建Module
摘要:1.开始 Node.js:https://nodejs.org 2.Moudle js编程中,由于大家可以直接在全局作用域中编写代码,使开发人员可以很容易的新建一个全局变量或这全局模块,这些全局变量或全局模块在工程化的开发中,极易互相冲突,同时也很难搞清楚它们之间互相的依赖关系。Node.js采用C 阅读全文
posted @ 2016-04-18 20:26 赵云会编程 阅读(561) 评论(1) 推荐(0)
Nodejs in Visual Studio Code 05.Swig+Bootstrap
摘要:1. 开始 准备好Express+Swig的练习代码:https://github.com/Mengkzhaoyun/nodepractise 准备好AdminLTE后台管理模版:https://www.almsaeedstudio.com/ 2. Express特性 2.1 静态文件与动态网页(A 阅读全文
posted @ 2016-04-06 12:48 赵云会编程 阅读(598) 评论(0) 推荐(0)
Nodejs in Visual Studio Code 04.Swig模版
摘要:1.开始 设置Node_Global:npm config set prefix "C:\Program Files\nodejs" Express组件:npm install express -g(全局安装) Express-Generator:npm install express-genera 阅读全文
posted @ 2016-04-05 18:42 赵云会编程 阅读(581) 评论(0) 推荐(0)
Nodejs in Visual Studio Code 03.学习Express
摘要:1.开始 下载源码:https://github.com/sayar/NodeMVA Express组件:npm install express -g(全局安装) 2.ExpressRest 打开目录08_ExpressREST app.js 现在项目都用html/js了,写个node几行代码搞定j 阅读全文
posted @ 2016-04-05 17:35 赵云会编程 阅读(341) 评论(0) 推荐(0)
Nodejs in Visual Studio Code 02.学习Nodejs
摘要:1.开始 源码下载:https://github.com/sayar/NodeMVA 在线视频:https://mva.microsoft.com/en-US/training-courses/using-node-js-with-visual-studio-code-13920 2.事件驱动编程语 阅读全文
posted @ 2016-04-05 15:35 赵云会编程 阅读(718) 评论(0) 推荐(0)
Nodejs in Visual Studio Code 01.简单介绍Nodejs
摘要:1.开始 作者自己:开发人员,Asp.Net , html / js , restful , memcached , oracle ,windows , iis 目标读者:供自己以后回顾 2.我看Nodejs 一个运行时语言,可以使用javascript编写网站程序; 可以运行在windows和li 阅读全文
posted @ 2016-04-05 13:56 赵云会编程 阅读(1084) 评论(0) 推荐(0)
Visual Studio Code 与 Github 集成
摘要:使用Visual Studio Code进行Nodejs开发充满了便利,为了更好的进行开发工作,有必要使用Github进行代码管理。 Visual Studio Code已经集成了GIT组件: https://github.com/git-for-windows/git/releases/downl 阅读全文
posted @ 2016-04-05 11:56 赵云会编程 阅读(2486) 评论(0) 推荐(0)