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
On Windows I am trying to open the server inside a VSCode debugger session and while the server is in the path and is spawned, the output stream handler is called only once with an empty buffer and then the whole node process is terminated.
No other redis server is running at that time.
redis-server 1.2.2
//index.jsconstRedisServer=require("redis-server")// Simply pass the port that you want a Redis server to listen on.constserver=newRedisServer({bin: "c:/redis/redis-server.exe",port: 5555});asyncfunctionmain(){awaitserver.open()// <-- this line causes the process to exitawaitserver.close()}main()
This library hasn't been developed for or tested on Windows. I'd be more than happy to review a PR from anyone with time and access to a Windows machine.
On Windows I am trying to open the server inside a VSCode debugger session and while the server is in the path and is spawned, the output stream handler is called only once with an empty buffer and then the whole node process is terminated.
No other redis server is running at that time.
redis-server 1.2.2
package.json
The text was updated successfully, but these errors were encountered: