# app-extension-feathersjs **Repository Path**: lemon_engine/app-extension-feathersjs ## Basic Information - **Project Name**: app-extension-feathersjs - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-04-29 - **Last Updated**: 2021-05-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # app-extension-graphql [WIP] ![official icon](https://img.shields.io/badge/Quasar%201.0-Official%20App%20Extension-blue.svg) | Statements | Branches | Functions | Lines | |-------|------------|----------|-----------| | ![Statements](https://img.shields.io/badge/Coverage-100%25-brightgreen.svg "Make me better!") | ![Branches](https://img.shields.io/badge/Coverage-100%25-brightgreen.svg "Make me better!") | ![Functions](https://img.shields.io/badge/Coverage-100%25-brightgreen.svg "Make me better!") | ![Lines](https://img.shields.io/badge/Coverage-100%25-brightgreen.svg "Make me better!") 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](http://feathersjs.com). 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](http://docs.feathersjs.com).