https://github.com/beevelop/feathers-admin-starter
https://github.com/beevelop/feathers-admin-starter
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/beevelop/feathers-admin-starter
- Owner: beevelop
- Created: 2017-03-14T21:18:35.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-21T21:27:08.000Z (almost 9 years ago)
- Last Synced: 2025-05-31T13:02:51.666Z (9 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Feathers with ng-admin
> PoC of getting ng-admin to work with FeathersJS
- Requires feathers-rest
- Has only be tested with feathers-sequelize yet
## Gettings started
```bash
# Clone this repo
npm install
npm start
# Navigate to http://localhost:8080
```
Adapt `admin.js` to your needs – consult the official ng-admin documentation (it's great stuff) and the Feathers documentation (getting better every day).
Putting the **entities** into separate constants might be far from a „beautiful“ pattern, but does in fact help splitting up the code with plain-old Angular.
And yep, there is no Grunt, Gulp, Webpack or Babel magic required to get this stuff working.
## Known Limitations
- Pagination is broken due to a fake `totalCount` (this could be simple to solve with an Express-Middleware)
## Successfully ~~tested~~ in Production with
### Feathers Modules
```json
{
"dependencies": {
"feathers": "2.1.1",
"feathers-rest": "1.7.1",
"feathers-sequelize": "1.4.0"
}
}
```