ES6和sequelize-cli

时间:2016-04-14 19:55:21

标签: javascript node.js ecmascript-6 sequelize.js babeljs

我的问题是如何运行用ES6编写的sequelize迁移/种子?

我尝试使用babel-node,但得到了奇怪的错误

命令

node_modules/babel-cli/lib/babel-node.js node_modules/sequelize-cli/bin/sequelize  db:seed

错误

node_modules/babel-cli/lib/babel-node.js: line 1: /Applications: is a directory
node_modules/babel-cli/lib/babel-node.js: line 3: /Applications: is a directory
node_modules/babel-cli/lib/babel-node.js: line 4: 127.0.0.1: command not found
node_modules/babel-cli/lib/babel-node.js: line 5: syntax error near unexpected token `('
node_modules/babel-cli/lib/babel-node.js: line 5: ` * when found, before invoking the "real" _babel-node(1) executable.'

2 个答案:

答案 0 :(得分:2)

答案 1 :(得分:0)

实际上,如果我有问题,您想将es6与sequelize一起使用。

根据官方文档,您只需执行以下简单步骤 首先,安装babel依赖项,尤其是@babel\register

npm install @babel\register

其次,在项目的根目录下创建一个.sequelizerc并添加以下内容

 require("@babel\register");

    const path = require('path');

module.exports = {
  'config': path.resolve('config', 'config.json'),
  'models-path': path.resolve('models'),
  'seeders-path': path.resolve('seeders'),
  'migrations-path': path.resolve('migrations')
}

第三,开始将sequelize-cli与e一起使用

为进一步阅读,您可以访问官方文档  http://docs.sequelizejs.com/manual/migrations.html#using-babel

记住玩得开心