Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Pokeapi | 3,387 | 8 days ago | 84 | bsd-3-clause | Python | |||||
The Pokémon API | ||||||||||
Relatedchat | 1,549 | 8 months ago | Swift | |||||||
Open source alternative communication platform | ||||||||||
Learnrelay | 890 | 4 years ago | 15 | mit | TypeScript | |||||
Learn Relay - A comprehensive introduction to Relay (created by Graphcool) | ||||||||||
Graphiti | 872 | 8 months ago | 65 | mit | Ruby | |||||
Stylish Graph APIs | ||||||||||
Chimp | 793 | 401 | 23 | 22 days ago | 195 | December 14, 2021 | 41 | mit | TypeScript | |
Tooling that helps you do quality, faster. | ||||||||||
Chronos | 568 | 22 days ago | 21 | mit | TypeScript | |||||
📊 📊 📊 Monitors the health and web traffic of servers, microservices, Kubernetes/Kafka clusters, containers, and AWS services with real-time data monitoring and receive automated notifications over Slack or email. | ||||||||||
Wp Graphql Gutenberg | 265 | 1 | 4 months ago | 22 | December 05, 2022 | 43 | gpl-3.0 | PHP | ||
Query gutenberg blocks with wp-graphql | ||||||||||
Graphql Ce | 136 | 3 years ago | other | PHP | ||||||
[ARCHIVED] Please use magento/magento2 project | ||||||||||
Slackr Graphql Subscriptions Starter Kit | 104 | 6 years ago | 1 | mit | JavaScript | |||||
A realtime React starter kit powered by GraphQL Subscriptions. The app is a slack clone and features real-time messaging and social authentication. | ||||||||||
The Road To Graphql Chinese | 99 | 3 years ago | ||||||||
📓The Road to GraphQL: Your journey to master pragmatic GraphQL in JavaScript |
Your development companion for doing quality, faster. For a full documentation please go to chimpjs.com.
$ npm install -g chimp
$ chimp COMMAND
running command...
$ chimp (-v|--version|version)
chimp/0.0.0-development darwin-x64 node-v12.16.2
$ chimp --help [COMMAND]
USAGE
$ chimp COMMAND
...
chimp create [NAME]
create (scaffold) a new app
USAGE
$ chimp create [NAME]
ARGUMENTS
NAME name of the new app, also used as the directory
OPTIONS
-a, --appPrefix=appPrefix [default: ~app] prefix that points to the sourcecode of your app
-g, --generatedPrefix=generatedPrefix [default: ~generated] prefix that points to the generated by chimp helper code
-h, --help show CLI help
EXAMPLES
$ chimp create my-new-app
$ chimp create my-new-app -a ~src -g ~chimp-helpers
See code: src/commands/create.ts
chimp generate
generate GraphQL code
USAGE
$ chimp generate
OPTIONS
-a, --appPrefix=appPrefix [default: ~app] prefix that points to the sourcecode of your app
-g, --generatedPrefix=generatedPrefix [default: ~generated] prefix that points to the generated by chimp helper code
-h, --help show CLI help
-p, --modulesPath=modulesPath path to the graphQL modules, only use if you are migrating an existing Apollo
App and you want to use chimp only for a part of it
EXAMPLES
$ chimp generate
$ chimp generate -a ~src -g ~chimp-helpers
See code: src/commands/generate.ts
chimp help [COMMAND]
display help for chimp
USAGE
$ chimp help [COMMAND]
ARGUMENTS
COMMAND command to show help for
OPTIONS
--all see all commands in CLI
See code: @oclif/plugin-help
chimp init
init Chimp
USAGE
$ chimp init
OPTIONS
-h, --help show CLI help
-p, --modulesPath=modulesPath [default: ./src/modules] path to the GraphQL modules.
EXAMPLES
$ chimp init
$ chimp init -p ./src/chimp-modules
See code: src/commands/init.ts
Please manually add pathsToModuleNameMapper like so:
const { pathsToModuleNameMapper } = require("ts-jest/utils");
const { compilerOptions } = require("./tsconfig");
// ...
module.exports = {
// ...,
moduleNameMapper: pathsToModuleNameMapper(compilerOptions.paths, {
prefix: "<rootDir>/"
})
}