- Getting Started with Meteor.js JavaScript Framework(Second Edition)
- Isaac Strack
- 348字
- 2021-07-16 13:49:09
Installing using curl
There are several ways to install a package of files and scripts. You can manually download and transfer files, you can use a pretty installation wizard/package with lots of Next buttons, or you can do what real developers do and use the command line. It puts hair on your chest. Which, now that I think about it, may not be a very desirable thing. Okay, no hair; we lied. But still, you want to use the command line, trust us. Trust the people that just lied to you.
curl
(or cURL if you want to get fancy) is a command-line tool used to transfer files and run scripts using standard URL locations. You probably already knew that, or you probably don't care. Either way, we've described it and we're now moving on to using it.
Open a terminal window or the command line, and enter the following command:
curl https://install.meteor.com/ | sh
This will install Meteor on your system. curl
is the command to go and fetch the script. https://install.meteor.com is the URL/location of the script, and sh
is, of course, the location of the script interpreter "Shell", which will run the script.
Once you've run this script, assuming you have an Internet connection and the proper permissions, you will see the Meteor package downloaded and installed:

The key thing that we're looking for in the preceding installation text is the launcher script location:
Writing a launcher script to /usr/local/bin/meteor
This location could vary depending on whether you're running this script in Linux or Mac OS X, but it puts Meteor into a location where you can then access the Meteor script from anywhere else. This will become important in a minute. For now, let's see what kind of friendly message we get when the Meteor installation is finished:
To get started fast: $ meteor create ~/my_cool_app $ cd ~/my_cool_app $ meteor Or see the docs at: docs.meteor.com
Great! You've successfully installed Meteor, and you're on your way to create your first Meteor web application!
Note
You should bookmark http://docs.meteor.com, an invaluable reference moving forward.
- Mastering OpenLayers 3
- FuelPHP Application Development Blueprints
- AWS Serverless架構:使用AWS從傳統部署方式向Serverless架構遷移
- Apache Karaf Cookbook
- 零基礎學Python網絡爬蟲案例實戰全流程詳解(高級進階篇)
- 編程數學
- 大模型RAG實戰:RAG原理、應用與系統構建
- Salesforce Reporting and Dashboards
- 深入剖析Java虛擬機:源碼剖析與實例詳解(基礎卷)
- Java程序員面試筆試寶典(第2版)
- 基于SpringBoot實現:Java分布式中間件開發入門與實戰
- Java Web從入門到精通(第3版)
- QPanda量子計算編程
- Python青少年趣味編程
- WildFly Cookbook