0

I want to ask if it's possible to use ASP.NET and node.js together for the server side of my app ?

Example: website which is a game and it will have chat before the game starts that will be build on node.js and when the game starts asp.net will be used for the CPU intensive tasks.

2
  • Welcome to stackoverflow! The answer to your question is yes. If you want a more specific answer you'll have to ask a more specific question :) stackoverflow.com/help/how-to-ask Commented May 21, 2015 at 21:42
  • Thank you sir. All i need to know was that it's possible to use bought languages so i can make the server side of my app as most optimal as possible. Now that i know it's possible i will just learn it :) Commented May 21, 2015 at 21:46

2 Answers 2

1

Yes you can safely transfer all CPU intensive tasks by making asynchronous calls from Node.js to a REST API written in C# or any other multithreaded language which handles CPU heavy processing and use the in built asynchronous feature of Node.js to handle all requests to your gaming app.

Sign up to request clarification or add additional context in comments.

Comments

0

There is no reason to use both ASP.NET and node , since those 2 are interchable and resource wize would be a waste. node could cover all of your needs and putting an IIS especially wiht a scale of several servers would be a waste. you could use express for the template.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.