
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
gatsby-theme-apollo-clone
Advanced tools
Inspired by [Apollo docs](https://www.apollographql.com/docs/apollo-server/). A personal theme notebook using Gatsby.
Inspired by Apollo docs. A personal theme notebook using Gatsby.
This is my attempt to use Gatsby to make a personal notebooks (for secrets and such). Yes I can use google docs or something else, but there is something about making your own that makes it sweeter to use. Plus it gives me a chance to learn about Gatsby and practice react hooks.
In your project root
yarn add gatsby gatsby-theme-apollo-clone
Then create a file gatsby-config.js
and follow the example
// this is mainly needed for the homepage to be publish
const packageJson = require("./package.json")
const PUBLISH_PAGES = {
// important to tell where all the markdown is located
mdPath: `${__dirname}/markdown`,
// sidebar configuration
sidebar: {
mainTitle: "THE DOC",
// title is the main title in the sidebar
// the subtitle and path is taken by the md frontmatter
sidePages: [
{
title: "Some Title",
pages: ["first.md", "second.md"],
},
{
title:
"A test md file umm this is also a long title for testing purposes of course. ",
pages: ["test.md"],
},
{
title: "Another Title",
pages: ["third.md"],
},
],
},
}
// finally export
module.exports = {
plugins: [
{
resolve: `gatsby-theme-apollo-clone`,
options: {
packageJson,
pages: PUBLISH_PAGES,
markdownSrc: "./markdown",
},
},
],
}
To start add script to package.json
{
"scripts": {
"develop": "gatsby develop"
}
}
and on command line
yarn develop
FAQs
Inspired by [Apollo docs](https://www.apollographql.com/docs/apollo-server/). A personal theme notebook using Gatsby.
The npm package gatsby-theme-apollo-clone receives a total of 3 weekly downloads. As such, gatsby-theme-apollo-clone popularity was classified as not popular.
We found that gatsby-theme-apollo-clone demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.