graphql-santa
v0.3.0
Published
<br>
Downloads
26
Readme
graphql-santa
Documentation
https://prisma-labs.github.io/graphql-santa
Development
Code Architecture
Overview
Roughly speaking we have three distinct levels of code:
src/{cli, framework}
Top level modules coded directly against their respective domain.src/utils/*
Mid level modules that might provide some conveniences or encapsulate concerns shared acrossframework
andcli
.src/lib/*
Discrete modules that stand alone conceptually and technically.
Each level builds on the one below it.
One can think of code as evolving from level 1 down toward level 3.
Of course the natural place for some code is level 1. On the other hand we often don't know at first what a generic solution looks like. So level 3 tends to be grown into, rather than started from.
You could see a level 4 here as npm registry, where we fully extract a library. That is not an explicit goal, just a tip for the mental model.
Overall status of the codebase is in a state of refactoring.
utils
,watcher
, and more are undergoing source restructuring in the near future.
Layout Overview
/docs -- The website
/test -- Integration tests
/src
/cli -- CLI codebase
/framework -- Runtime codebase
/utils -- Non-discrete modules (may have state, tight coupling)
/lib -- Discrete modules
lib
The layout of a typical lib module looks like so:
/lib
/<module-name>
/index.ts -- Export-only module, the public interface
/index.spec.ts -- Tests against the public interface. Integration in the sense
that it is agnostic to the unit or units making up the lib.
/*.ts -- The modules making up the lib
/*.spec.ts -- Optional tests. Please prioritize `index.spec.ts`
Be careful about lib modules depending upon one another excessively. The more complex the dependency graph the harder it can become to reason about the modules. But if there is non-trivial re-use to be had and/or just a simple/clean and logical dependency then go for it.
The built-in exception to this heuristic is lib/utils
which can be thought of as a bespoke lodash
for our lib components. Use it for small utilities, which might be shared, are very generic, and are not numerous enough to justify their own dedicated lib module. For example there is a utility to make text span a given length using given pad character.
Testing
There are unit tests and integration tests. yarn test
runs them all. Beware that the integration tests run slowly. yarn dev:test
runs only unit for this reason. Testing on CI is not yet setup.
Unit
yarn test:unit
We co-locate unit tests with their respective modules. These can be run via yarn test:unit
.
Integration
yarn test:integration
Integration tests rely on yarn link
. This means those integration tests cannot work on a machine that has not done yarn link
inside the root of the cloned repo.
Releasing
We use dripip
to make releases. CI/CD preview releases are not setup yet.
yarn -s release:preview
yarn -s release:stable
Website
- We use docsifyjs/docsify.
- There is no build step
- Commits to master will trigger deployment (via
gh-pages
, no ci/cd on our part) - Navigation is manually managed in
_sidebar.md
- Cover page is managed in
_coverpage.md
- Configuration and significant styling customizations are kept in
index.html
Getting started
Install
docsify-cli
There is currently a bug with
docsify-cli
requiring the following manual fix after installation. To make this less painful, install globally so you should only have to do this once.yarn global add docsify
vim /usr/local/bin/docsify :se ff=unix :wq
Boot docs dev to preview your changes locally
yarn docs:dev
Workflow Tips
Working With Example Apps via Linking
Refer to https://github.com/prisma-labs/graphql-santa-examples
Working with create command
In any example you can use this workflow:
rm -rf test-create && mcd test-create && ../node_modules/.bin/graphql-santa create