Priya Rajaram
Priya Rajaram

Reputation: 360

what is the use of node js binary in meteor?

We team planned to develop an app with Meteor.

What is the use of node js in meteor?

So far googled, i found that when we are installing Meteor, it will download something called dev_bundle which has NodeJS and all the NPM modules needed by Meteor. All these modules are pre-compiled for our platform.

Do we need to learn node js to work with meteor?

Please guide me.

Thanks, Priya

Upvotes: 0

Views: 167

Answers (1)

mattgreen
mattgreen

Reputation: 323

Meteor is a node.js framework. Node is what's happening "under the hood". You do not need to learn node to get started with meteor. Simply speaking, frameworks(like this) are just higher level architecture to help you "write less, do more". You can read more about meteor here:

https://en.wikipedia.org/wiki/Meteor_(web_framework)

Upvotes: 1

Related Questions