Babel.js ES6和续集-CLI

xqkwcwgp  于 2022-12-08  发布在  Babel
关注(0)|答案(3)|浏览(253)

我的问题是如何运行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.'
xn1cxnb4

xn1cxnb41#

实际上,如果我有问题的话,你会想用sequelize来使用es6。
根据官方文件,你只需要先做简单的步骤,安装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 with es6语法
有关详细阅读,请访问官方文档http://docs.sequelizejs.com/manual/migrations.html#using-babel
记得玩得开心

oo7oh9g9

oo7oh9g93#

Google把我引到这里,这仍然需要配置。但找到了一个解决方案,甚至可以让你使用ES6语法编写迁移脚本。
参考:https://gist.github.com/elawad/c0af86ea37629ad0538c2b974b4ea0c1

相关问题