F5F Stay Refreshed Software Operating Systems Check the official Node.js documentation or package repositories for installation instructions.

Check the official Node.js documentation or package repositories for installation instructions.

Check the official Node.js documentation or package repositories for installation instructions.

Pages (2): 1 2 Next
X
XmentalminerX
Member
71
10-22-2017, 02:22 AM
#1
Hey! I'm working on an interactive Twitter bot using Node.js v8.0.0. I'm using Ubuntu 16.04 Server edition, running it as a plain server without any updates. It doesn't have a GUI installed and I'm not concerned about security patches. Could you share the old source list for this version?
X
XmentalminerX
10-22-2017, 02:22 AM #1

Hey! I'm working on an interactive Twitter bot using Node.js v8.0.0. I'm using Ubuntu 16.04 Server edition, running it as a plain server without any updates. It doesn't have a GUI installed and I'm not concerned about security patches. Could you share the old source list for this version?

P
puffypuffle100
Junior Member
16
11-01-2017, 01:25 PM
#2
Ubuntu 16.04 remains fully supported as it is an LTS release, so you don’t have to modify your sources.list file. You can set up node.js by checking the instructions on the GitHub page. -edit- Alternatively, you can try Snap, which is a simpler option compared to writing an installation script.
P
puffypuffle100
11-01-2017, 01:25 PM #2

Ubuntu 16.04 remains fully supported as it is an LTS release, so you don’t have to modify your sources.list file. You can set up node.js by checking the instructions on the GitHub page. -edit- Alternatively, you can try Snap, which is a simpler option compared to writing an installation script.

P
PhoenixGamin9
Member
59
11-02-2017, 03:22 AM
#3
Thank you for your message! I see you're having issues with your home network.
P
PhoenixGamin9
11-02-2017, 03:22 AM #3

Thank you for your message! I see you're having issues with your home network.

L
littleJ394
Junior Member
47
11-02-2017, 03:37 AM
#4
That's all! Let me know if you need anything else.
L
littleJ394
11-02-2017, 03:37 AM #4

That's all! Let me know if you need anything else.

B
Burner4554
Member
69
11-02-2017, 07:14 AM
#5
Refrain from following this guidance. Use the provided link instead.
B
Burner4554
11-02-2017, 07:14 AM #5

Refrain from following this guidance. Use the provided link instead.

S
SeanTheSun
Junior Member
40
11-02-2017, 11:47 PM
#6
I’ll guide you through it step by step. Start by installing Node.js using the command in your terminal: sudo apt install node. Once installed, you can write your JavaScript files and run them like scripts. Node.js works similarly to Python or Perl, so you can use it as a script replacement. For example, if you saved a Node.js file as hello_world.js with the command `node hello_world.js`, you can make it executable by running `chmod +x hello_world.js` and then execute it with `./hello_world.js`. This completes the setup.
S
SeanTheSun
11-02-2017, 11:47 PM #6

I’ll guide you through it step by step. Start by installing Node.js using the command in your terminal: sudo apt install node. Once installed, you can write your JavaScript files and run them like scripts. Node.js works similarly to Python or Perl, so you can use it as a script replacement. For example, if you saved a Node.js file as hello_world.js with the command `node hello_world.js`, you can make it executable by running `chmod +x hello_world.js` and then execute it with `./hello_world.js`. This completes the setup.

S
Sussu
Senior Member
708
11-13-2017, 06:25 AM
#7
You wanted to set up installation via apt because you depend on external sources for package updates. Using nvm, you can install from binaries on the site and also manage versions under your account without needing root access. It supports installing multiple Node versions and switching between them easily.
S
Sussu
11-13-2017, 06:25 AM #7

You wanted to set up installation via apt because you depend on external sources for package updates. Using nvm, you can install from binaries on the site and also manage versions under your account without needing root access. It supports installing multiple Node versions and switching between them easily.

L
leeviah
Member
54
11-17-2017, 06:17 PM
#8
Are you sure you need several Node versions? If yes, why do they serve a purpose?
L
leeviah
11-17-2017, 06:17 PM #8

Are you sure you need several Node versions? If yes, why do they serve a purpose?

P
151
11-17-2017, 06:50 PM
#9
Could you clarify what you're referring to with the official instructions?
P
PerritaMacrera
11-17-2017, 06:50 PM #9

Could you clarify what you're referring to with the official instructions?

_
_EJIDaR_
Junior Member
27
11-17-2017, 08:27 PM
#10
It’s not problematic at all, but using node only for the past year and a half with nvm has simplified things. For instance, AWS lambda runs on node 8.10 while our docker images use lts node. Switching between them is just as smooth as using nvm with 8.10. It also maintains all binaries and global npm packages separated, giving you a clean setup when changing versions. It’s similar to using venv during Python development.
_
_EJIDaR_
11-17-2017, 08:27 PM #10

It’s not problematic at all, but using node only for the past year and a half with nvm has simplified things. For instance, AWS lambda runs on node 8.10 while our docker images use lts node. Switching between them is just as smooth as using nvm with 8.10. It also maintains all binaries and global npm packages separated, giving you a clean setup when changing versions. It’s similar to using venv during Python development.

Pages (2): 1 2 Next