node.js为express添加富文本编辑器——ueditor
先大概预览下我目录结构 1,首先下载ueditor模块 npm install ueditor --save 2,先下载PHP版本的ueditor:http://ueditor.baidu.com/website/download.html 在public目录下创建一个名字为ueditor的文件夹,将下载下来的ueditor包解压…
564 2016-10-09 去围观ubuntu下使用git上传项目到github中
要在ubuntu环境里使用git上传项目到github,步骤如下: 1,是否安装git 可以使用 git --version 测试是否安装 如果没有安装,使用命令: sudo apt-get install git git-core 安装git 2,获取 ssh密钥 ssh-keygen -C "你的github邮箱"…
479 2016-10-09 去围观node.js验证码 express、koa2
koa2 验证码 在node.js环境中配合express框架制作验证码 效果图: 以下方法在ubuntu下进行的 安装: npm install ccap --save express制作验证码图片: var ccap = require('ccap')(); var obj={}; //验证码 router.g…
569 2016-10-08 去围观解决express-session模块报错:“deprecated undefined resave option; provide resave option app.js”
网站搬家,数据库自然也要搬家。之后运行node ./bin/www 报错:deprecated undefined resave option; provide resave option app.js app.use(session({ secret: 'myblog', key: 'blog',//cookie name cookie: {maxAge: 1000 * 60 * 60 * 24 * 30},//30…
536 2016-10-08 去围观