46 questions
1
vote
0
answers
53
views
How to install @nodert-win10-rs4/windows.devices.geolocation in Node 18 / Electron 29 with Cordova-Electron on Windows?
I’m working on a Cordova-Electron project where I need to access the Windows native geolocation API (WinRT) instead of using Google’s geolocation provider.
Environment details:
Node.js: 18.20.x
...
0
votes
1
answer
158
views
How can I run node-windows module
I have node js project and ı want the convert windows service and
I want it to start automatically.my code turns into windows service, but the requests I make do not come without running the program.
...
0
votes
1
answer
935
views
Compatibility problem on Windows Server 2019
For two years now, I created a windows service for my node project on a windows server 2008 using node-windows module. Recently we upgrade our version to a Windows Server 2019. I then tried to ...
0
votes
1
answer
2k
views
Start nestjs project as a Windows service
We used to start Angular and NestJS (based on node.js) projects using Docker containers. This solution was discontinued for various reasons, so we are looking for a way to start these projects at the ...
1
vote
1
answer
1k
views
How do to use node-windows with service account?
I am using node-windows to run my node app as a service. Because I intend to use node-expose-sspi I created a service account with powershell (I checked with Test-ADServiceAccount).
If I run this code
...
0
votes
1
answer
3k
views
No native build was found for platform=win 32
I am getting the following error in the auto-start(Run entry in Regedit to Auto-Start) App after restarting the app or stop auto-start and started manually then its working file.
Error
No native build ...
0
votes
1
answer
3k
views
How to pass the dotenv config path through a Windows service created with node-windows
Windows Server 2008 R2 Enterprise
Node version 12.13.1
node-windows version 1.0.0-beta.5
When I call my node application, instead of using require('dotenv') in code to load the environment variables (...
0
votes
1
answer
333
views
Trying to run a node server as windows service on azure vm
I have build a node server and have been testing it periodically but running from powershell. Right now I am trying to use node-windows package to run the node server as a service, so that the server ...
12
votes
8
answers
24k
views
Wiki.js not running. Database Connection Error
Windows Enterprise 2016 LTSB Version 1607. Installed Wiki.js with PostgreSQL. Has Node.js installed previously (v12.16.2).
Got to step 8 of wiki.js installation process using the Powershell:
node ...
2
votes
0
answers
390
views
Service not found after install service node-windows
My install service script as below:
install_windows_service.js
require("dotenv").config();
var Service = require("node-windows").Service;
// Create a new service object
var svc = ...
1
vote
1
answer
1k
views
Increasing max-old-space-size in node.js app running as Windows service
I'm relatively new to node.js and have built an app that is designed to be deployed as a standalone application without the need to install node.js or any of its dependencies.
I'm running into an ...
1
vote
0
answers
238
views
Node JS application service stopped running on system restart on Windows 10.How I can solve this issue?
I am using windows service for running my nodejs application on system restart. But my application is not running, whenever I checked in services it's showing blank in status bar and I have already ...
0
votes
1
answer
2k
views
Wiki.js not running as a Windows Service
Windows Server 2019 Standard (1809)
Installed Wiki.js with PostgreSQL.
Works great when starting the server manually
node server
Installed node-windows and registered to run Wiki.js as a service. The ...
1
vote
1
answer
415
views
Service not getting installed using node-windows
I tried using node-windows to create a service > "daemon" folder was getting created but service was not getting installed. Following is the code :
var Service = require('node-windows')....
3
votes
1
answer
1k
views
Issue with installing node application as a service using Inno Setup and node-windows script
The service installs but will not start, either straight away or after system reboot, when running the following script from Inno Setup:
#define ....
#define NODE "node-v12.16.2-x64.msi"
......