現在、AdonisJSというフレームワークを使用して、nodejsで簡単なシステムを構築しております。
バリデータを導入したく以下のコマンドを実行しました。
cmd
1install @adonisjs/validator
以下のエラーが出力されます。
error
1Class extends value undefined is not a constructor or null 2at Object.<anonymous> (C:\Users\xxxx\AppData\Roaming\npm\node_modules\←[4m@adonisjs←[24m\cli\src\Commands\Base\index.js:17:31)
該当のファイルを確認したところ、確かにnullになっている可能性がありそうなコードになっています。
js
1'use strict' 2 3/* 4 * adonis-cli 5 * 6 * (c) Harminder Virk <virk@adonisjs.com> 7 * 8 * For the full copyright and license information, please view the LICENSE 9 * file that was distributed with this source code. 10*/ 11 12const path = require('path') 13let ace = null ★おそらくここ★ 14 15/** 16 * Give preference to the user ace module if 17 * command is executed in project root. 18 */ 19try { 20 ace = require(path.join(process.cwd(), 'node_modules/@adonisjs/ace')) 21} catch (error) { 22 ace = require('@adonisjs/ace') 23} 24 25module.exports = ace
これがnullになっていて、クラスをエクステンドできないといっているのだと思いますが、
このファイルはadonisjsをインストールした際に自動生成された、ソースになっており、消したり編集すべきもののか不透明です。
何か他に解決できる方法はありますでしょうか?
あなたの回答
tips
プレビュー