Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I am completely new to SvelteKit (and development in general). I built several NodeJS apps with express to learn web development.
I now learned the basics of Svelte and SvelteKit (routing etc.), but I struggle to understand how I can use NodeJS code at the backend and SvelteKit at the frontend smoothly.
I understand that I need an adapter. But how can an express-app interact with the client without creating routings conflicts? How can I have backend data and algorythms, that I then send to the client directly or through SvelteKit?
Is there any resource I can read/watch to understand this?
Greetings from a Newbie
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 hours ago.
Improve this question
I am testing out SMS functionality in my Next.js project. I was unable to find any resources from textLocal documentation (https://api.textlocal.in/docs/sendsms) on how to send SMS with Node.js. What is the possible solution? Is there a way to send SMS using Node and textLocal or should I use a different provider?
Thanks!
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
My understanding is that to establish a persistent socket connection using socket.io the Node.js server should be always running. With Google Cloud Functions there isn't an always running Node.js server, so keeping a socket connection alive is not possible.
Is Cloud Run with a running Node.js server the best option to handle multiple socket connections using socket.io ?
UPDATE: From January 2021, GCP Cloud Run supports WebSockets.
Here is the link to the Cloud Run documentation
Here is the link to the blog post (their announcement)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I am working on Node Js web application and I want to unit test my application. Can anyone know about unit testing framework in Node Js which developer mostly used...
We use Jasmine for a payment solution project
Mocha and supertest are most used packages.
mocha https://mochajs.org/
supertest https://github.com/visionmedia/supertest
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am new in nodejs. I am trying to implement oauth2 with rest api using nodejs, mongodb and express framework. Please suggest me how to implement step by step. Thanks
Maybe you should use Passport with the oauth2 strategy
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I am going to use the https://www.npmjs.com/package/stompit or https://www.npmjs.com/package/stomp-client to subscribe to ActiveMQ. My question is, is there a node.js framework that I can use with it (e.g. Hapi, Express) ?
You don't need to start a server to use these packages.
Just include them in any JS file, configure them and they are ready to be used. Much like it is explained in doc itself.
Or if you want to include them in one of your express application, create a js file, and include it in your application.