EGOIST
EGOIST
- 9/1: start rewriting - not happy about the current plugins/source-file-system implementation - windows support - 10/1: releasing 1.0
https://github.com/egoist/graphql-aot Example `./theme/layouts/index.vue`: ```vue {{ page.title }} const { data: { pages } } = graphql` pages { title body } ` export default { data() { return { pages...
- Create a new project: `peco init [optional folder name]` - Create a new post: `peco new post [optional name]` - Create a new page: `peco new page [optional name]`...
We can implement some common MongoDB query operators: https://docs.mongodb.com/manual/reference/operator/query/ https://www.gatsbyjs.org/docs/graphql-reference/#intro ```graphql { allMarkdown(filter: {frontmatter__tags: {elemMatch: {eq: 'post'}}} { nodes { id } } } ``` Get nodes with frontmatter `tags`...
React Static has a plugin system and it allows to create routes programmatically from data, so it would work with Mordred very nicely. https://github.com/react-static/react-static/tree/master/