Answer the question
In order to leave comments, you need to log in
How to run index.js on the server?
Most likely, I put the question incorrectly, tk. my head is already full of mess
There is index.js
var app = require('express') ();
var http = require('http').Server(app);
var io = require('socket.io')(http);
Answer the question
In order to leave comments, you need to log in
As mentioned above, there are hostings that are created only for developing sites with certain engines, for example, PHP development, where all scripts are executed by the Apache / Nginx web server.
And you don't have access to most of the resources. How to determine? Almost always, on this type of hosting, only the public_html folder is directly accessible (for uploading via FTP).
Most likely, this means that your application cannot be executed in any way.
VDS (VPS) is a separate machine with a specific operating system (optional), to the resources of which you have full access. In this case, you can easily run your application. When you rent a virtual machine, you need to manage it through the terminal - using an SSH connection.
If you need an extremely cheap hosting for tests, I can definitely recommend firstvds.ru.
There are several solutions for running the JavaScript programming language: running in a browser, running with Node.js (very popular, choose it), Deno and the rest, which is no longer worth using if you count on support, performance and community.
To run applications on Node.js, you do not need any hosting if you work in test development mode and the required level of access to the site is from your own computer.
Install Node.js from the official site.
Read about package.json and dependencies.
For example here.
And the launch of the application, in the console: node index.js.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question