{"id":22486472,"url":"https://github.com/quasarframework/quasar-wrapper-feathersjs-api","last_synced_at":"2025-08-02T19:31:59.325Z","repository":{"id":66073746,"uuid":"87060505","full_name":"quasarframework/quasar-wrapper-feathersjs-api","owner":"quasarframework","description":"[DEPRECATED] Quasar Framework Feathersjs API Wrapper","archived":true,"fork":false,"pushed_at":"2017-10-11T15:05:37.000Z","size":88,"stargazers_count":28,"open_issues_count":0,"forks_count":3,"subscribers_count":8,"default_branch":"dev","last_synced_at":"2024-03-01T13:38:57.607Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/quasarframework.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2017-04-03T10:00:54.000Z","updated_at":"2023-01-28T18:25:35.000Z","dependencies_parsed_at":null,"dependency_job_id":"20d576ab-ef70-456d-9c09-8da5cf09151d","html_url":"https://github.com/quasarframework/quasar-wrapper-feathersjs-api","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quasarframework%2Fquasar-wrapper-feathersjs-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quasarframework%2Fquasar-wrapper-feathersjs-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quasarframework%2Fquasar-wrapper-feathersjs-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quasarframework%2Fquasar-wrapper-feathersjs-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/quasarframework","download_url":"https://codeload.github.com/quasarframework/quasar-wrapper-feathersjs-api/tar.gz/refs/heads/dev","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228500109,"owners_count":17930001,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-06T17:14:39.945Z","updated_at":"2024-12-06T17:15:51.915Z","avatar_url":"https://github.com/quasarframework.png","language":"JavaScript","readme":"![Quasar Framework logo](https://cdn.rawgit.com/quasarframework/quasar-art/863c14bd/dist/svg/quasar-logo-full-inline.svg)\n\n# Quasar Framework Feathers API Wrapper\n\u003e Build full web apps with Quasar/Feathers as a frontend/backend solution.\n\n**This is a work in progress, not ready for production use and not yet part of the official Quasar framework**.\n\nThis wrapper comes into different \"flavors\" (corresponding to a branch) and although it is intended to be a standalone module it plays nice with some specific Quasar templates. To create your Quasar app starting from one of these templates run: `quasar init @claustres/quasar-templates#template-branch-name \u003capp-folder-name\u003e`, then jump into your app folder.\n\nHere are the different \"flavors\":\n* [Feathers chat demo app](https://github.com/quasarframework/quasar-wrapper-feathersjs-api/tree/dev) demonstrating authentication, services and real-time events, which plays nice with the template https://github.com/claustres/quasar-templates/tree/feathers-api. \n* [Feathers Server-Side Rendering (SSR) demo app](https://github.com/quasarframework/quasar-wrapper-feathersjs-api/tree/ssr), which plays nice with the template https://github.com/claustres/quasar-templates/tree/feathers-api-ssr. \n\n## Wrap your Quasar app\nWhen integrated to Quasar from your root app dir you will have to run: `$ quasar wrap api feathers`\n\n**While it is a work in progress, you can wrap it from your root app dir using**: `quasar init @quasarframework/quasar-wrapper-feathersjs-api#dev api`\n\nThen from the backend wrapper folder called **api** install the server-side app dependencies: `$ npm install`\n\n## Running for development\nMake sure you keep running your frontend Quasar app (from root project folder): `$ quasar dev`\n\nThen from the backend wrapper folder run the server-side app: `$ npm run dev`\n\n## Building for production\nBuild your frontend Quasar app (from root project folder): `$ quasar build`.\n\nThen from the backend wrapper folder build the server-side app: `$ npm run build`\n\n## Running in production\nFrom the backend wrapper folder run the server-side app: `$ npm run prod`\n\n# What exactly provides this wrapper ?\n\u003e Mainly server-side code with babel integration to support ES2017.\n\nThe key points are the following:\n- **src** directory host server-side code with a server entry point **main.js** that simply start a Feathers server\n- **babel CLI** is used as a development dependency to transpile server-side code\n- **dist** output directory is for transpiled backend files\n- npm **clean** script cleans up transpiled code\n- npm **dev** script runs the server in development mode on port 8081 by default (see **config** directory), client should be served as usual with Webpack\n- npm **prod** script runs the server in production mode and serve client production version with Feathers\n- **nodemon** is used as development dependency to watch changes in server side code and restart transpilation/server when required\n- server-side **debug** mode in node is activated by default for development\n- include a basic Feathers app **structure/setup** with models, services and hooks\n- include a basic Feathers **datastore** based on a local NeDB\n- include the Feathers **authentication** module\n- include a basic **model** (a chat message) as an example\n\n## License\n\nCopyright (c) 2017 Luc Claustres\n\n[MIT License](http://en.wikipedia.org/wiki/MIT_License)\n","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquasarframework%2Fquasar-wrapper-feathersjs-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fquasarframework%2Fquasar-wrapper-feathersjs-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquasarframework%2Fquasar-wrapper-feathersjs-api/lists"}