Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/haoliangyu/koop-ogcapi-features-demo-app
https://github.com/haoliangyu/koop-ogcapi-features-demo-app
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/haoliangyu/koop-ogcapi-features-demo-app
- Owner: haoliangyu
- Created: 2019-11-07T18:37:43.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-02T04:33:47.000Z (over 1 year ago)
- Last Synced: 2024-04-09T21:24:16.084Z (7 months ago)
- Language: JavaScript
- Size: 2.07 MB
- Stars: 3
- Watchers: 5
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# koop-cli-new-project
A minimal Koop project template from [Koop CLI](https://github.com/koopjs/koop-cli).
See the [specification](https://koopjs.github.io/docs/usage/koop-core) for more details.
## Configuration
This project is configured with [config](https://www.npmjs.com/package/config). As a community practice, it is recommanded to namespace the configuration for plugins in order to avoid any potential key conflict.
## Development
### Testing
This project uses [mocah](https://www.npmjs.com/package/mocha) as the testing framework and [chaijs](https://www.chaijs.com/) as the assertion library. All test files in the `test` directory should have the special extension `.test.js`, which will be executed by the command:
```
$ npm test
```### Dev Server
This project by default uses the [Koop CLI](https://github.com/koopjs/koop-cli) to set up the dev server. It can be invoded via
```
$ npm start
```The server will be running at `http://localhost:8080` or at the port specified at the configuration.
For more details, check the [Koop CLI documentation](https://github.com/koopjs/koop-cli/blob/master/README.md).