Javascript Heroku在nodejs应用程序上构建失败,如何解决?

Javascript Heroku在nodejs应用程序上构建失败,如何解决?,javascript,node.js,heroku,Javascript,Node.js,Heroku,我越来越奇怪,很难追踪错误,我能坚持好几个月,现在我所有的构建都失败了,我不知道为什么,有人能帮我吗 我已经检查并从git repo中删除了所有节点模块, 设置节点版本 我甚至不知道从哪里开始调试,任何帮助都将不胜感激。谢谢我的构建和应用程序在本地运行良好 remote: Compressing source files... done. remote: Building source: remote: remote: -----> Node.js app detected remote:

我越来越奇怪,很难追踪错误,我能坚持好几个月,现在我所有的构建都失败了,我不知道为什么,有人能帮我吗

我已经检查并从git repo中删除了所有节点模块, 设置节点版本

我甚至不知道从哪里开始调试,任何帮助都将不胜感激。谢谢我的构建和应用程序在本地运行良好

remote: Compressing source files... done.
remote: Building source:
remote:
remote: -----> Node.js app detected
remote:
remote: -----> Creating runtime environment
remote:
remote:        NPM_CONFIG_LOGLEVEL=error
remote:        NODE_ENV=production
remote:        NODE_MODULES_CACHE=false
remote:        NODE_VERBOSE=false
remote:
remote: -----> Installing binaries
remote:        engines.node (package.json):  unspecified
remote:        engines.npm (package.json):   unspecified (use default)
remote:
remote:        Resolving node version 12.x...
remote:        Downloading and installing node 12.13.0...
remote:        Using default npm version: 6.12.0
remote:
remote: -----> Restoring cache
remote:        Caching has been disabled because NODE_MODULES_CACHE=false
remote:
remote: -----> Installing dependencies
remote:        Installing node modules (package.json + package-lock)
remote:
remote:        > iconv@2.3.2 install /tmp/build_2fae94cddee9e19c317397e0a70bc2ff/node_modules/iconv
remote:        > node-gyp rebuild
remote:
remote:        make: Entering directory '/tmp/build_2fae94cddee9e19c317397e0a70bc2ff/node_modules/iconv/build'
remote:          CXX(target) Release/obj.target/iconv/src/binding.o
remote:        In file included from /usr/include/c++/7/cassert:44:0,
remote:                         from /app/.cache/node-gyp/12.13.0/include/node/node_object_wrap.h:26,
remote:                         from ../../nan/nan.h:55,
remote:                         from ../src/binding.cc:18:
remote:        ../../nan/nan_object_wrap.h: In destructor ‘virtual Nan::ObjectWrap::~ObjectWrap()’:
remote:        ../../nan/nan_object_wrap.h:24:25: error: ‘class Nan::Persistent<v8::Object>’ has no member named ‘IsNearDeath’
remote:             assert(persistent().IsNearDeath());
remote:                                 ^
remote:        ../../nan/nan_object_wrap.h: In static member function ‘static void Nan::ObjectWrap::WeakCallback(const v8::WeakCallbackInfo<Nan::ObjectWrap>&)’:
remote:        ../../nan/nan_object_wrap.h:127:26: error: ‘class Nan::Persistent<v8::Object>’ has no member named ‘IsNearDeath’
remote:             assert(wrap->handle_.IsNearDeath());
remote:                                  ^
remote:        ../src/binding.cc: In static member function ‘static void {anonymous}::Iconv::Initialize(v8::Local<v8::Object>)’:
remote:        ../src/binding.cc:70:60: error: no matching function for call to ‘v8::FunctionTemplate::GetFunction()’
remote:                      Nan::New<FunctionTemplate>(Make)->GetFunction());
remote:                                                                    ^
remote:        In file included from /app/.cache/node-gyp/12.13.0/include/node/node.h:63:0,
remote:                         from ../../nan/nan.h:53,
remote:                         from ../src/binding.cc:18:
remote:        /app/.cache/node-gyp/12.13.0/include/node/v8.h:5995:46: note: candidate: v8::MaybeLocal<v8::Function> v8::FunctionTemplate::GetFunction(v8::Local<v8::Context>)
remote:           V8_WARN_UNUSED_RESULT MaybeLocal<Function> GetFunction(
remote:                                                      ^~~~~~~~~~~
remote:        /app/.cache/node-gyp/12.13.0/include/node/v8.h:5995:46: note:   candidate expects 1 argument, 0 provided
remote:        ../src/binding.cc:72:63: error: no matching function for call to ‘v8::FunctionTemplate::GetFunction()’
remote:                      Nan::New<FunctionTemplate>(Convert)->GetFunction());
remote:                                                                       ^
remote:        In file included from /app/.cache/node-gyp/12.13.0/include/node/node.h:63:0,
remote:                         from ../../nan/nan.h:53,
remote:                         from ../src/binding.cc:18:
remote:        /app/.cache/node-gyp/12.13.0/include/node/v8.h:5995:46: note: candidate: v8::MaybeLocal<v8::Function> v8::FunctionTemplate::GetFunction(v8::Local<v8::Context>)
remote:           V8_WARN_UNUSED_RESULT MaybeLocal<Function> GetFunction(
remote:                                                      ^~~~~~~~~~~
remote:        /app/.cache/node-gyp/12.13.0/include/node/v8.h:5995:46: note:   candidate expects 1 argument, 0 provided
remote:        ../src/binding.cc:74:77: warning: ‘bool v8::Object::Set(v8::Local<v8::Value>, v8::Local<v8::Value>)’ is deprecated: Use maybe version [-Wdeprecated-declarations]
remote:             obj->Set(Nan::New<String>(#err).ToLocalChecked(), Nan::New<Integer>(err))
remote:                                                                                     ^
remote:        ../src/binding.cc:75:5: note: in expansion of macro ‘EXPORT_ERRNO’
remote:             EXPORT_ERRNO(EINVAL);
remote:             ^~~~~~~~~~~~
remote:        In file included from /app/.cache/node-gyp/12.13.0/include/node/v8-internal.h:14:0,
remote:                         from /app/.cache/node-gyp/12.13.0/include/node/v8.h:25,
remote:                         from /app/.cache/node-gyp/12.13.0/include/node/node.h:63,
remote:                         from ../../nan/nan.h:53,
remote:                         from ../src/binding.cc:18:
remote:        /app/.cache/node-gyp/12.13.0/include/node/v8.h:3403:22: note: declared here
remote:                         bool Set(Local<Value> key, Local<Value> value));
remote:                              ^
remote:        /app/.cache/node-gyp/12.13.0/include/node/v8config.h:311:3: note: in definition of macro ‘V8_DEPRECATED’
remote:           declarator __attribute__((deprecated(message)))
remote:           ^~~~~~~~~~
remote:        ../src/binding.cc:74:77: warning: ‘bool v8::Object::Set(v8::Local<v8::Value>, v8::Local<v8::Value>)’ is deprecated: Use maybe version [-Wdeprecated-declarations]
remote:             obj->Set(Nan::New<String>(#err).ToLocalChecked(), Nan::New<Integer>(err))
remote:                                                                                     ^
remote:        ../src/binding.cc:76:5: note: in expansion of macro ‘EXPORT_ERRNO’
remote:             EXPORT_ERRNO(EILSEQ);
remote:             ^~~~~~~~~~~~
remote:        In file included from /app/.cache/node-gyp/12.13.0/include/node/v8-internal.h:14:0,
remote:                         from /app/.cache/node-gyp/12.13.0/include/node/v8.h:25,
remote:                         from /app/.cache/node-gyp/12.13.0/include/node/node.h:63,
remote:                         from ../../nan/nan.h:53,
remote:                         from ../src/binding.cc:18:
remote:        /app/.cache/node-gyp/12.13.0/include/node/v8.h:3403:22: note: declared here
remote:                         bool Set(Local<Value> key, Local<Value> value));
remote:                              ^
remote:        /app/.cache/node-gyp/12.13.0/include/node/v8config.h:311:3: note: in definition of macro ‘V8_DEPRECATED’
remote:           declarator __attribute__((deprecated(message)))
remote:           ^~~~~~~~~~
remote:        ../src/binding.cc:74:77: warning: ‘bool v8::Object::Set(v8::Local<v8::Value>, v8::Local<v8::Value>)’ is deprecated: Use maybe version [-Wdeprecated-declarations]
remote:             obj->Set(Nan::New<String>(#err).ToLocalChecked(), Nan::New<Integer>(err))
remote:                                                                                     ^
remote:        ../src/binding.cc:77:5: note: in expansion of macro ‘EXPORT_ERRNO’
remote:             EXPORT_ERRNO(E2BIG);
remote:             ^~~~~~~~~~~~
remote:        In file included from /app/.cache/node-gyp/12.13.0/include/node/v8-internal.h:14:0,
remote:                         from /app/.cache/node-gyp/12.13.0/include/node/v8.h:25,
remote:                         from /app/.cache/node-gyp/12.13.0/include/node/node.h:63,
remote:                         from ../../nan/nan.h:53,
remote:                         from ../src/binding.cc:18:
remote:        /app/.cache/node-gyp/12.13.0/include/node/v8.h:3403:22: note: declared here
remote:                         bool Set(Local<Value> key, Local<Value> value));
remote:                              ^
remote:        /app/.cache/node-gyp/12.13.0/include/node/v8config.h:311:3: note: in definition of macro ‘V8_DEPRECATED’
remote:           declarator __attribute__((deprecated(message)))
remote:           ^~~~~~~~~~
remote:        ../src/binding.cc: In static member function ‘static Nan::NAN_METHOD_RETURN_TYPE {anonymous}::Iconv::Make(Nan::NAN_METHOD_ARGS_TYPE)’:
remote:        ../src/binding.cc:91:64: error: no matching function for call to ‘v8::ObjectTemplate::NewInstance()’
remote:                 Nan::New<ObjectTemplate>(object_template)->NewInstance();
remote:                                                                        ^
remote:        In file included from /app/.cache/node-gyp/12.13.0/include/node/node.h:63:0,
remote:                         from ../../nan/nan.h:53,
remote:                         from ../src/binding.cc:18:
remote:        /app/.cache/node-gyp/12.13.0/include/node/v8.h:6292:44: note: candidate: v8::MaybeLocal<v8::Object> v8::ObjectTemplate::NewInstance(v8::Local<v8::Context>)
remote:           V8_WARN_UNUSED_RESULT MaybeLocal<Object> NewInstance(Local<Context> context);
remote:                                                    ^~~~~~~~~~~
remote:        /app/.cache/node-gyp/12.13.0/include/node/v8.h:6292:44: note:   candidate expects 1 argument, 0 provided
remote:        ../src/binding.cc: In static member function ‘static Nan::NAN_METHOD_RETURN_TYPE {anonymous}::Iconv::Convert(Nan::NAN_METHOD_ARGS_TYPE)’:
remote:        ../src/binding.cc:126:72: warning: ‘bool v8::Object::Set(uint32_t, v8::Local<v8::Value>)’ is deprecated: Use maybe version [-Wdeprecated-declarations]
remote:             rc->Set(0, Nan::New<Integer>(static_cast<uint32_t>(input_consumed)));
remote:                                                                                ^
remote:        In file included from /app/.cache/node-gyp/12.13.0/include/node/v8-internal.h:14:0,
remote:                         from /app/.cache/node-gyp/12.13.0/include/node/v8.h:25,
remote:                         from /app/.cache/node-gyp/12.13.0/include/node/node.h:63,
remote:                         from ../../nan/nan.h:53,
remote:                         from ../src/binding.cc:18:
remote:        /app/.cache/node-gyp/12.13.0/include/node/v8.h:3412:22: note: declared here
remote:                         bool Set(uint32_t index, Local<Value> value));
remote:                              ^
remote:        /app/.cache/node-gyp/12.13.0/include/node/v8config.h:311:3: note: in definition of macro ‘V8_DEPRECATED’
remote:           declarator __attribute__((deprecated(message)))
remote:           ^~~~~~~~~~
remote:        ../src/binding.cc:127:73: warning: ‘bool v8::Object::Set(uint32_t, v8::Local<v8::Value>)’ is deprecated: Use maybe version [-Wdeprecated-declarations]
remote:             rc->Set(1, Nan::New<Integer>(static_cast<uint32_t>(output_consumed)));
remote:                                                                                 ^
remote:        In file included from /app/.cache/node-gyp/12.13.0/include/node/v8-internal.h:14:0,
remote:                         from /app/.cache/node-gyp/12.13.0/include/node/v8.h:25,
remote:                         from /app/.cache/node-gyp/12.13.0/include/node/node.h:63,
remote:                         from ../../nan/nan.h:53,
remote:                         from ../src/binding.cc:18:
remote:        /app/.cache/node-gyp/12.13.0/include/node/v8.h:3412:22: note: declared here
remote:                         bool Set(uint32_t index, Local<Value> value));
remote:                              ^
remote:        /app/.cache/node-gyp/12.13.0/include/node/v8config.h:311:3: note: in definition of macro ‘V8_DEPRECATED’
remote:           declarator __attribute__((deprecated(message)))
remote:           ^~~~~~~~~~
remote:        iconv.target.mk:113: recipe for target 'Release/obj.target/iconv/src/binding.o' failed
remote:        make: *** [Release/obj.target/iconv/src/binding.o] Error 1
remote:        make: Leaving directory '/tmp/build_2fae94cddee9e19c317397e0a70bc2ff/node_modules/iconv/build'
remote:        gyp ERR! build error
remote:        gyp ERR! stack Error: `make` failed with exit code: 2
remote:        gyp ERR! stack     at ChildProcess.onExit (/tmp/build_2fae94cddee9e19c317397e0a70bc2ff/.heroku/node/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:194:23)
remote:        gyp ERR! stack     at ChildProcess.emit (events.js:210:5)
remote:        gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:272:12)
remote:        gyp ERR! System Linux 4.4.0-1048-aws
remote:        gyp ERR! command "/tmp/build_2fae94cddee9e19c317397e0a70bc2ff/.heroku/node/bin/node" "/tmp/build_2fae94cddee9e19c317397e0a70bc2ff/.heroku/node/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
remote:        gyp ERR! cwd /tmp/build_2fae94cddee9e19c317397e0a70bc2ff/node_modules/iconv
remote:        gyp ERR! node -v v12.13.0
remote:        gyp ERR! node-gyp -v v5.0.5
remote:        gyp ERR! not ok
remote:        npm ERR! code ELIFECYCLE
remote:        npm ERR! errno 1
remote:        npm ERR! iconv@2.3.2 install: `node-gyp rebuild`
remote:        npm ERR! Exit status 1
remote:        npm ERR!
remote:        npm ERR! Failed at the iconv@2.3.2 install script.
remote:        npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
remote:
remote:        npm ERR! A complete log of this run can be found in:
remote:        npm ERR!     /tmp/npmcache.B2Pnc/_logs/2019-10-28T04_57_07_565Z-debug.log
remote:
remote: -----> Build failed
remote:
remote:        We're sorry this build is failing! You can troubleshoot common issues here:
remote:        https://devcenter.heroku.com/articles/troubleshooting-node-deploys
remote:
remote:        Some possible problems:
remote:
remote:        - Node version not specified in package.json
remote:          https://devcenter.heroku.com/articles/nodejs-support#specifying-a-node-js-version
remote:
remote:        Love,
remote:        Heroku
remote:
remote:  !     Push rejected, failed to compile Node.js app.
remote:
remote:  !     Push failed
remote: Verifying deploy...
remote:
remote: !   Push rejected to nameless-reef-31035.
remote:
To https://git.heroku.com/nameless-reef-31035.git
! [remote rejected] master -> master (pre-receive hook declined)
remote:压缩源文件。。。完成。
远程:建筑源:
远程:
远程:-->Node.js应用程序检测到
远程:
远程:-->创建运行时环境
远程:
远程:NPM\u配置\u日志级别=错误
远程:节点_ENV=生产
远程:节点\模块\缓存=false
远程:节点\u VERBOSE=false
远程:
远程:-->安装二进制文件
远程:engines.node(package.json):未指定
remote:engines.npm(package.json):未指定(使用默认值)
远程:
远程:正在解析节点版本12.x。。。
远程:下载和安装节点12.13.0。。。
远程:使用默认npm版本:6.12.0
远程:
远程:-->正在恢复缓存
远程:已禁用缓存,因为节点\u模块\u缓存=false
远程:
远程:-->安装依赖项
远程:安装节点模块(package.json+包锁)
远程:
远程:>iconv@2.3.2安装/tmp/build_2fae94cddee9e19c317397e0a70bc2ff/node_模块/iconv
远程:>节点gyp重建
远程:
远程:make:输入目录“/tmp/build2fae94cddee9e19c317397e0a70bc2ff/node_modules/iconv/build”
远程:CXX(target)Release/obj.target/iconv/src/binding.o
远程:在/usr/include/c++/7/cassert:44:0中包含的文件中,
远程:从/app/.cache/node gyp/12.13.0/include/node/node\u object\u wrap.h:26,
远程:从.././nan/nan.h:55,
远程:从../src/binding.cc:18:
远程:../nan/nan_object_wrap.h:在析构函数“virtual nan::ObjectWrap::~ObjectWrap()”中:
远程:../nan/nan_对象_wrap.h:24:25:错误:“类nan::Persistent”没有名为“IsNearDeath”的成员
远程:断言(persistent().IsNearDeath());
远程:^
远程:../nan/nan_object_wrap.h:在静态成员函数“static void nan::ObjectWrap::WeakCallback(const v8::WeakCallbackInfo&)”中:
远程:../nan/nan_对象_wrap.h:127:26:错误:“类nan::Persistent”没有名为“IsNearDeath”的成员
远程:断言(wrap->handle.IsNearDeath());
远程:^
远程:../src/binding.cc:在静态成员函数“static void{anonymous}::Iconv::Initialize(v8::Local)”中:
远程:../src/binding.cc:70:60:错误:调用“v8::FunctionTemplate::GetFunction()”时没有匹配的函数
远程:Nan::New(Make)->GetFunction();
远程:^
远程:在/app/.cache/node gyp/12.13.0/include/node/node.h:63:0中包含的文件中,
远程:从.././nan/nan.h:53,
远程:从../src/binding.cc:18:
远程:/app/.cache/node gyp/12.13.0/include/node/v8.h:5995:46:注意:候选:v8::MaybeLocal v8::FunctionTemplate::GetFunction(v8::Local)
远程:V8_警告_未使用_结果可能是本地GetFunction(
远程:^~~~~~~~~~~
remote:/app/.cache/node gyp/12.13.0/include/node/v8.h:5995:46:注意:候选者需要1个参数,提供0
远程:../src/binding.cc:72:63:错误:调用“v8::FunctionTemplate::GetFunction()”时没有匹配的函数
远程:Nan::New(Convert)->GetFunction();
远程:^
远程:在/app/.cache/node gyp/12.13.0/include/node/node.h:63:0中包含的文件中,
远程:从.././nan/nan.h:53,
远程:从../src/binding.cc:18:
远程:/app/.cache/node gyp/12.13.0/include/node/v8.h:5995:46:注意:候选:v8::MaybeLocal v8::FunctionTemplate::GetFunction(v8::Local)
远程:V8_警告_未使用_结果可能是本地GetFunction(
远程:^~~~~~~~~~~
remote:/app/.cache/node gyp/12.13.0/include/node/v8.h:5995:46:注意:候选者需要1个参数,提供0
远程:../src/binding.cc:74:77:警告:“bool v8::Object::Set(v8::Local,v8::Local)”已被弃用:使用可能的版本[-Wdeprecated声明]
远程:obj->Set(Nan::New(#err).ToLocalChecked(),Nan::New(err))
远程:^
远程:../src/binding.cc:75:5:注意:在宏“EXPORT\u ERRNO”的扩展中
远程:导出错误号(EINVAL);
远程:^~~~~~~~~~~~
远程:在/app/.cache/node gyp/12.13.0/include/node/v8 internal.h:14:0中包含的文件中,
远程:从/app/.cache/node gyp/12.13.0/include/node/v8.h:25,
远程:从/app/.cache/node gyp/12.13.0/include/node/node.h:63,
远程:从.././nan/nan.h:53,
远程:从../src/binding.cc:18:
远程:/app/.cache/node gyp/12.13.0/include/node/v8.h:3403:22:注意:此处声明
远程:布尔集(本地键、本地值));
远程:^
远程:/app/.cache/node gyp/12.13.0/include/node/v8config.h:311:3:注意:在宏“V8_已弃用”的定义中
远程:声明程序uuuuu属性uuuu((已弃用(消息)))
远程:^~~~~~~~~~
远程:../src/binding.cc:74:77:警告:“bool v8::Object::Set(v8::Local,v8::Local)”已被弃用:使用可能的版本[-Wdeprecated声明]
远程: