
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
@gatsbyjs/gatsby-theme-website
Advanced tools
/** @jsx jsx */
import { jsx } from "theme-ui" import { graphql } from "gatsby" import { GoMarkGithub as GithubIcon } from "react-icons/go" import { FaUsers as CommunityIcon } from "react-icons/fa"
import PageMetadata from "../components/page-metadata" import Link from "../components/localized-link" import Container from "../components/container" import PageWithPluginSearchBar from "../components/page-with-plugin-searchbar" import FooterLinks from "../components/shared/footer-links" import GatsbyIcon from "../components/gatsby-monogram"
const GatsbyPluginBadge = ({ isOfficial }) => {
const Icon = isOfficial ? GatsbyIcon : CommunityIcon
const title = isOfficial
? Official Gatsby Plugin
: Community Gatsby Plugin
const text = isOfficial ? Official Plugin
: Community Plugin
return (
<div
sx={{
variant: links.muted
,
mr: 8,
"&&": {
border: 0,
color: textMuted
,
display: flex
,
fontWeight: body
,
},
"&&:hover": {
color: textMuted
,
},
}}
>
<span
sx={{
display: inline-block
,
mr: 2,
}}
title={title}
>
{text}
)
}
export default function PackageReadmeTemplate({ location, data: { npmPackage }, }) { const readmePage = npmPackage.readme.childMarkdownRemark const isOfficial = npmPackage.fields.official const packageName = npmPackage.name
const excerpt = readmePage.excerpt ?? Plugin information for ${packageName}
const githubUrl = isOfficial
? https://github.com/gatsbyjs/gatsby/tree/master/packages/${packageName}
: npmPackage.repository?.url ??
https://github.com/search?q=${npmPackage.name}
return (
<div
sx={{
display: flex
,
flexWrap: wrap
,
justifyContent: space-between
,
pb: 6,
"&&:hover": {
color: inherit
,
},
}}
>
<div
css={{
display: flex
,
justifyContent: space-between
,
}}
>
<a
sx={{ variant: links.muted
}}
href={githubUrl}
aria-labelledby="github-link-label"
>
<GithubIcon focusable="false" sx={{ mr: 2 }} />
View plugin on GitHub
{githubUrl && (
<Link
to={/starters?d=${packageName}
}
sx={{ variant: links.muted
}}
>
See starters using this
)}
<div
css={{ position: relative
}}
dangerouslySetInnerHTML={{ __html: readmePage.html }}
/>
)
}
export const pageQuery = graphql query($slug: String!) { npmPackage(slug: { eq: $slug }) { name keywords fields { official } repository { url } readme { childMarkdownRemark { html excerpt timeToRead } } } }
FAQs
Theme for Gatsby's Website
The npm package @gatsbyjs/gatsby-theme-website receives a total of 0 weekly downloads. As such, @gatsbyjs/gatsby-theme-website popularity was classified as not popular.
We found that @gatsbyjs/gatsby-theme-website demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 21 open source maintainers 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.