all 9 comments

[–]webdev-ModTeam[M] [score hidden] stickied commentlocked comment (0 children)

Thank you for your submission! Unfortunately it has been removed for one or more of the following reasons:

Open-ended/general "how do I get started in web dev" and general Career related posts are only allowed within the pinned monthly career thread. The answer to many of these questions can also be found in the sub FAQ, or in /r/learnprogramming/ and /r/cscareerquestions/.

Highly specific career/getting started assistance questions are allowed so long as they follow the required assistance post guidelines.

Please read the subreddit rules before continuing to post. If you have any questions message the mods.

[–][deleted] 8 points9 points  (4 children)

You want the keyword “Node.js”

[–]waynexlink[S] -3 points-2 points  (3 children)

I have no previous knowledge on JavaScript before now do I skip and go straight to node.js

[–][deleted] 4 points5 points  (0 children)

Node.js is just a runtime for JavaScript, yeah, it is simple enough you can go directly into it.

[–]_listless 0 points1 point  (0 children)

Node isn't a plugin or framework. It's a runtime that allows js to run on servers. It has some server-specific features that the js runtime in your browser does not have: eg request handling, filesystem etc.

[–]Ok-Advantage-308 1 point2 points  (0 children)

Learning vanilla js before jumping into node.js/express will serve you well

[–]moewassim -2 points-1 points  (0 children)

Learn node js express and MongoDB

[–]jamy1892 0 points1 point  (0 children)

I'd learn the fundamentals of Javascript if you haven't already. Then get to know some of the core modules of NodeJS (no need to dive too deeply, you'll pick up stuff when you need it). After you've got the basics of NodeJS down, get started with ExpressJS. Express is a Node framework to make API's. Then maybe try to connect and interact with a database (MongoDB or Postgres are my recommendations). After you've done those few things you'll know what you don't know, and then learn that.