2016-11-30 sequelize.js 生成DDL语句预览 因为想做一个直接生成建表语句的工具。 又不想连接到数据库(懒得让数据库一直启动着) 看了下sequelize.js的测试代码, 找到了以下方法可以实现 Continue reading...
2016-10-30 系统 Nodejs yarn换淘宝源 Nodejs yarn换淘宝源 如果觉得安装速度慢,安装源和原来 npm 是一样的,可以通用,修改方法如下: yarn config get registry # -> https://registry.yarnpkg.com 可以改成 taobao 的源: Continue reading...
2016-02-01 编程 Webpack 项目中使用fetch.js 安装依赖 npm i imports-loader exports-loader --save-dev npm i whatwg-fetch --save 方法一: webpack配置 修改webpack.config.js 文件 plugins: [ new webpack.ProvidePlugin({ 'fetch': 'imports?this=>global!exports?global.fetch!whatwg-fetch' }), ], 方法二: import 在需要使用的文件中import Continue reading...
2015-07-30 编程 ActiveMQ 入门 ActiveMQ 入门 下载与安装 官方下载地址 解压,运行bin/win[32|64]/activemq[.bat] 启动服务 环境信息 控制台: http://localhost:8161 默认端口:8161 服务地址: Continue reading...