You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all, docsify is awesome and so is this cli. My only problem is that I want to run multiple generated docs on various ports. When I specify a port other than the last docsify serve I am presented with an exception. This happens locally and on my remote server where I want many documents to co-exist. Locally I just want to be able to edit 1-2. Remotely I am pushing more.
Is there something I am missing to allow this to happen, or is this something that needs to be fixed.
The current work-around in my setup is to run a basic static nodejs server with forever.
Here is the error I am seeing after running docsify serve . --port 3000 then docsify serve . --port 4000:
Listening at http://localhost:4000
events.js:160
throw er; // Unhandled 'error' event
^
Error: listen EADDRINUSE :::35729
at Object.exports._errnoException (util.js:1022:11)
at exports._exceptionWithHostPort (util.js:1045:20)
at Server._listen2 (net.js:1259:14)
at listen (net.js:1295:10)
at Server.listen (net.js:1391:5)
at Server.listen (/usr/local/lib/node_modules/docsify-cli/node_modules/livereload/lib/livereload.js:66:28)
at Object.exports.createServer (/usr/local/lib/node_modules/docsify-cli/node_modules/livereload/lib/livereload.js:224:14)
at Object.module.exports [as serve] (/usr/local/lib/node_modules/docsify-cli/lib/commands/serve.js:29:12)
at Object.handler (/usr/local/lib/node_modules/docsify-cli/bin/docsify:69:28)
at Object.self.runCommand (/usr/local/lib/node_modules/docsify-cli/node_modules/yargs/lib/command.js:231:22)
Thanks in advance!
The text was updated successfully, but these errors were encountered:
First of all, docsify is awesome and so is this cli. My only problem is that I want to run multiple generated docs on various ports. When I specify a port other than the last
docsify serve
I am presented with an exception. This happens locally and on my remote server where I want many documents to co-exist. Locally I just want to be able to edit 1-2. Remotely I am pushing more.Is there something I am missing to allow this to happen, or is this something that needs to be fixed.
The current work-around in my setup is to run a basic static nodejs server with
forever
.Here is the error I am seeing after running
docsify serve . --port 3000
thendocsify serve . --port 4000
:Thanks in advance!
The text was updated successfully, but these errors were encountered: