mirror of
https://github.com/vale981/apollo-server
synced 2025-03-06 10:11:40 -05:00
22 lines
1.1 KiB
Markdown
22 lines
1.1 KiB
Markdown
# Apollo-server: A GraphQL server for Node.js
|
|
|
|
[](https://badge.fury.io/js/apollo-server)
|
|
[](https://travis-ci.org/apollostack/apollo-server)
|
|
[](https://coveralls.io/github/apollostack/apollo-server?branch=master)
|
|
[](http://slack.apollostack.com/)
|
|
|
|
|
|
### Contributions
|
|
|
|
Contributions, issues and feature requests are very welcome. If you are using this package and fixed a bug for yourself, please consider submitting a PR!
|
|
|
|
### Folder structure
|
|
|
|
**/src/core**:
|
|
- contains the core functionality that is independent of any particular node.js server framework
|
|
|
|
**/src/bindings/<name>**:
|
|
- Contains the bindings for Node.js server framework <name> (i.e. express, HAPI, Koa, connect)
|
|
|
|
**/src/test**:
|
|
- Contains only the `tests.ts` file that imports other tests. All real test files go in the same folder as the code they are testing, and should be named `*.test.ts`.
|