- Building Single:page Web Apps with Meteor
- Fabian Vogelsteller
- 239字
- 2021-08-06 19:29:35
Installing Meteor
Installing Meteor is as easy as running the following command in the terminal:
$ curl https://install.meteor.com/ | sh
That's it! This will install the Meteor command-line tool ($ meteor)
, the Meteor server, MongoDB database, and the Meteor core packages (libraries).
Installing Git
To install Git, I recommend installing the GitHub app from https://mac.github.com or https://windows.github.com. We can then simply go inside the app to Preferences and click on the Install Command Line Tools button inside the Advanced tab.
If we want to install Git manually and set it up via the command line, we can download the Git installer from http://git-scm.com and follow this great guide at https://help.github.com/articles/set-up-git.
Now, we can check whether everything was installed successfully by opening the terminal and running the following command:
$ git
Tip
Downloading the example code
You can download the example code files for all Packt books you have purchased from your account at http://www.packtpub.com. If you purchased this book elsewhere, you can visit http://www.packtpub.com/support and register to have the files e-mailed directly to you.
This should return us a list of Git options. If we get command not found: git
, we need to check whether the git
binary was correctly added to our PATH
environment variable.
If everything is fine, we are ready to create our first Meteor app.
- JavaScript百煉成仙
- MySQL數(shù)據(jù)庫管理實戰(zhàn)
- Web Development with Django Cookbook
- 樂高機器人設(shè)計技巧:EV3結(jié)構(gòu)設(shè)計與編程指導(dǎo)
- 數(shù)據(jù)庫系統(tǒng)原理及MySQL應(yīng)用教程
- Cassandra Data Modeling and Analysis
- 網(wǎng)絡(luò)爬蟲原理與實踐:基于C#語言
- Android系統(tǒng)原理及開發(fā)要點詳解
- Windows內(nèi)核編程
- Hands-On Full Stack Development with Spring Boot 2.0 and React
- 軟件工程基礎(chǔ)與實訓教程
- Web Developer's Reference Guide
- C語言程序設(shè)計
- Python物理建模初學者指南(第2版)
- Roslyn Cookbook