1.安装npm2.安装CLI ( npm install -g grunt-cli)3.安装grunt
(npm install grunt --save-dev)4.添加gruntfile.jsmodule.exports = function (grunt)
{ grunt.initConfi....
分类:
其他好文 时间:
2014-05-23 11:22:46
阅读次数:
281
In Express 3.0, you normally would use app.configure() (or app.use() ) to set up the required middleware you need. Those middleware you specified are bundled together with Express 3.0.
e.g.
var ex...
分类:
移动开发 时间:
2014-05-22 12:14:27
阅读次数:
349
一直想使用nodejs来搭建个人blog,由于拖延症的缘故一直没有完成。在godaddy上注册了域名,但是备案太麻烦,于是有了以下实践。说明下目前这个blog使用的一些技术和平台:ghost7ghostwww.nitrous.iophpclouddnspodgodaddyghostghost是搭建....
分类:
其他好文 时间:
2014-05-22 05:11:05
阅读次数:
343
在各种关于NodeJS的教材中,必定会有关于express的介绍.express本身是一个很赞的库.在之前的express版本中,在全局模式安装(npm -g
install express)之后,在cmd命令行中,都可以使用express命令进行各种操作(创建简单的网站模板等).但是,现在安装后,...
分类:
其他好文 时间:
2014-05-22 05:02:31
阅读次数:
332
为了让NodeJS开发的网站能在服务器端正常运行,最好把NodeJS需要运行的代码注册成Windows服务,服务器如果重启也不需要重新去启动NodeJS。1、编写一个执行NodeJS脚本的bat文件(run.bat),如下:@echo
offd:cd D:\[目录]node [需要执行的文件名].j...
先用node安装下载selenium-standalone server并运行npm install
webdriverjsjava -jar
path/to/your/selenium-server-standalone-2.39.0.jar 创建test_webdriver.jsvar
webd...
分类:
Web程序 时间:
2014-05-21 12:11:58
阅读次数:
403
WebStorm
8 with IdeaVim
plugin
vim, sublime
sublime加上node插件。
nide
Brackets
vim
+ jshint2.vim
eclipse
Visual
Studio 2013 + NTVS(Node.js
Tools for Visual Studio)
notepad++
atom.io
No...
分类:
Web程序 时间:
2014-05-21 09:24:23
阅读次数:
333
Nginx担当WebSockets代理英文原文:http://nginx.com/blog/websocket-nginx/作者:chszs,转载需注明。博客主页:http://blog.csdn.net/chszsWebSocket 协议提供了一种创建支持客户端和服务端实时双向通信Web应用程序的方法。作为HTML5规范的一部分,WebSockets简化了开发Web实时通信程序的难度。目前主流的...
分类:
Web程序 时间:
2014-05-21 07:54:34
阅读次数:
457
JavaScript缺少包结构。CommonJS致力于改变这种现状,于是定义了包的结构规范(http://wiki.commonjs.org/wiki/Packages/1.0
)。而NPM的出现则是为了在CommonJS规范的基础上,实现解决包的安装卸载,依赖管理,版本管理等问题。requir.....
分类:
Web程序 时间:
2014-05-19 12:47:51
阅读次数:
362