An open API service indexing awesome lists of open source software.

https://github.com/pranabdas/meteor-learning


https://github.com/pranabdas/meteor-learning

Last synced: 8 months ago
JSON representation

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
```