PS E:\Node-js-projects\node_jsonwebtoken_login> git add .
warning: LF will be replaced by CRLF in app.js.
The file will have its original line endings in your working directory
PS E:\Node-js-projects\node_jsonwebtoken_login> git commit -m "first commit"
[master 2d2091d] first commit
1 file changed, 1 deletion(-)
PS E:\Node-js-projects\node_jsonwebtoken_login> git push heroku master
Enumerating objects: 5, done.
Counting objects: 100% (5/5), done.
Delta compression using up to 8 threads
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 293 bytes | 293.00 KiB/s, done.
Total 3 (delta 2), reused 0 (delta 0), pack-reused 0
remote: Compressing source files... done.
remote: Building source:
remote:
remote: -----> Deleting 0 files matching .slugignore patterns.
remote: -----> Node.js app detected
remote:
remote: -----> Creating runtime environment
remote:
remote: NPM_CONFIG_LOGLEVEL=error
remote: NODE_ENV=production
remote: NODE_MODULES_CACHE=true
remote: NODE_VERBOSE=false
remote:
remote: -----> Installing binaries
remote: engines.node (package.json): 12.16.1
remote: engines.npm (package.json): unspecified (use default)
remote:
remote: Resolving node version 12.16.1...
remote: Downloading and installing node 12.16.1...
remote: Using default npm version: 6.13.4
remote:
remote: -----> Restoring cache
remote: - node_modules
remote:
remote: -----> Installing dependencies
remote: Installing node modules
error: RPC failed; curl 56 OpenSSL SSL_read: error:14095126:SSL routines:ssl3_read_n:unexpected eof while reading, errno 0
fatal: the remote end hung up unexpectedly
fatal: the remote end hung up unexpectedly
Everything up-to-date
remote: Installing node modules error: RPC failed; curl 56 OpenSSL SSL_read: error:14095126:SSL routines:ssl3_read_n:unexpected EOF while reading, errno 0 fatal: the remote end hung up unexpectedly fatal: the remote end hung up unexpectedly Everything up-to-date
I get this error when I deploy a web app to heroku. I use a heroku free dyno. My system is windows 10. I use git to push to heroku. The command is "git init" "git add ." "git commit -m "first commit" "Heroku create app name" "git push heroku master"
Everything goes fine until the line of "remote: Installing node modules". This is not the first time I am deploying this app, previous deploys were all fine. But this deploy gets failed.
@NickShebanov same problem started again. but now it is in early stage. `git add .
warning: LF will be replaced by CRLF in app.js.
The file will have its original line endings in your working directory
PS E:\Node-js-projects\node_jsonwebtoken_login> git commit -m "first commit"
[master 6d08b27] first commit
1 file changed, 1 deletion(-)
PS E:\Node-js-projects\node_jsonwebtoken_login> git push heroku master
Enumerating objects: 24, done.
Counting objects: 100% (24/24), done.
Delta compression using up to 8 threads
Compressing objects: 100% (19/19), done.
Writing objects: 100% (20/20), 5.90 MiB | 3.48 MiB/s, done.
Total 20 (delta 12), reused 0 (delta 0), pack-reused 0
error: RPC failed; curl 56 OpenSSL SSL_read: error:14095126:SSL routines:ssl3_read_n:unexpected eof while reading, errno 10035
fatal: the remote end hung up unexpectedly
fatal: the remote end hung up unexpectedly
Everything up-to-date`