May 2017
Intermediate to advanced
388 pages
7h 30m
English
The steps for creating a meteor app are as simple as the installation:
>> meteor create <appname>
You can name it as anything you want; I am naming mine timerapp. We'll go through the steps of creating a basic timer, updating the time from the server side to the client in real time:
>> meteor create timerapp
The meteor create appname command installed all packages and libraries specified in the .meteor folder in the app directory. In Meteor, the packages can be installed from Atmosphere and NPM, and there are two places where you can ...
Read now
Unlock full access