https://github.com/pranabdas/meteor-learning
https://github.com/pranabdas/meteor-learning
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pranabdas/meteor-learning
- Owner: pranabdas
- Created: 2023-10-09T11:36:27.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-09T12:18:01.000Z (over 2 years ago)
- Last Synced: 2023-10-09T13:32:38.877Z (over 2 years ago)
- Language: JavaScript
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Meteor Learning
## Setup
Current version of Meteor requires node v14. You may use `nvm`:
```console
nvm install 14
nvm use 14
```
Install meteor globally:
```console
npm install -g meteor
```
Initialize new meteor project:
```console
meteor create meteor-learning
```
Start development server:
```console
meteor run
```
or simply:
```console
meteor
```