Breaking News
Loading...
, ,

Why Meteor is a Best Choice for Beginners [Series - 1]

Share on Google Plus



For new developers who want to achieve a lot quickly, Meteor is an awesome choice. My experience with Meteor as a framework leads me to believe that it is:
  • Efficient – learn a bit, achieve a lot
  • Worthwhile – the skills are transferable
  • Intuitive – the concepts appeal to our common sense
  • Flexible – many different solutions including mobile apps
I managed to sell Meteor as a good developer framework when I was interviewing for avolunteer teacher at MEST, a startup school based in Ghana and will be teaching it to complete beginners from January 15th.

Super easy to install

This cannot be overstated. Beginner programmers are often afraid of the command line and simply give up when they find that a step doesn’t work. The fact that it’s just a one line means that as many as possible get an instance running.
curl https://install.meteor.com/ | sh
Ok, you still need to install Node, but that’s getting increasingly easy as on both Mac andLinux. I haven’t run Meteor on Windows before, but my advice would be don’t use Windows. Seriously.

Full stack

Linking up the various moving parts is something that also puts off a lot of beginners who haven’t yet settled into a preferred. Meteor sets up your database, templates, stylesheets and logic such that they work flawlessly. It also has great support for coffeescript and less and the like.
meteor add coffeescript

You only need one language

If we assume that a beginner hasn’t yet mastered a single language, we are reducing their workload and letting them reuse their limited knowledge as much as possible.
//Client
if Meteor.isClient
  console.log 'What did the client say to the server?'

//Server
if Meteor.isServer
  console.log 'I dunno'

//Both 
console.log 'Maybe you should give him a callbacK?'

That language is Javascript

Javascript is an easy language for beginners. It’s fast, flexible and relatively forgiving.
Also, it’s incredibly widely used. This means that even if a programmer moves on from Meteor, they’ve gained some truly valuable knowledge.

You Might Also Like

0 comments

About me


Like us on Facebook