Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Added pro-tip on using latest node/npm #141

Merged
merged 1 commit into from
Apr 16, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions getting-started/scaffolding.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ $ npm start

Open up [localhost:3030](http://localhost:3030) in your browser and you will see your new feathers app running. The endpoint for the Message service you just created is [localhost:3030/messages](http://localhost:3030/messages).

**ProTip:** If you notice any errors when running `npm start`, make sure you have the latest versions of Node and NPM, otherwise you might run into issues such as [this](https://github.com/feathersjs/generator-feathers/issues/78).

## What Just Happened

A lot of stuff just happened there very quickly. We automatically generated a basic application with a REST and real time API for both [messages](http://localhost:3030/messages), [users](http://localhost:3030/users) and local authentication. We now have full CRUD capability that uses a persistent datastore for both the `/messages` and `/users` endpoints. We also have local authentication fully configured and some basic authorization permissions on the user service.
Expand Down