我的问题是如何运行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.'
3条答案
按热度按时间xn1cxnb41#
实际上,如果我有问题的话,你会想用
sequelize
来使用es6。根据官方文件,你只需要先做简单的步骤,安装babel依赖项,尤其是
@babel\register
npm install @babel\register
其次,在项目的根目录创建一个
.sequelizerc
,并添加以下内容完成上述操作后,您可以开始使用sequelize with es6语法
有关详细阅读,请访问官方文档http://docs.sequelizejs.com/manual/migrations.html#using-babel
记得玩得开心
ubof19bj2#
请尝试以下配置:https://gist.github.com/andrewmunro/030f0bf62453239c495b0347c8cd1247。
对我很有效。
oo7oh9g93#
Google把我引到这里,这仍然需要配置。但找到了一个解决方案,甚至可以让你使用ES6语法编写迁移脚本。
参考:https://gist.github.com/elawad/c0af86ea37629ad0538c2b974b4ea0c1