The Wayback Machine - http://web.archive.org/web/20201018024859/https://github.com/quasarframework/app-extension-feathersjs
Skip to content
dev
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

app-extension-graphql [WIP]

official icon

Statements Branches Functions Lines
Statements Branches Functions Lines

This is the official Quasar 1.0 App-Extension for graphql.

Installation

IN DEVELOPMENT, DO NOT USE IN PRODUCTION.

$ quasar ext add @quasar/feathersjs

How to use

About

This project uses Feathers. An open source web framework for building modern real-time applications.

Getting Started

  1. Install your dependencies

    $ cd path/to/server-feathers; yarn
    
  2. Start your app

    $ node src/
    

Default User

Open another terminal window and add a test user:

curl 'http://localhost:3030/users/' -H 'Content-Type: application/json' --data-binary '{ "email": "feathers@example.com", "password": "secret" }'

Scaffolding

Feathers has a powerful command line interface. Here are a few things it can do:

$ npm install -g @feathersjs/cli          # Install Feathers CLI

$ feathers generate service               # Generate a new Service
$ feathers generate hook                  # Generate a new Hook
$ feathers generate model                 # Generate a new Model
$ feathers help                           # Show all commands

Help

For more information on all the things you can do with Feathers visit docs.feathersjs.com.

You can’t perform that action at this time.