
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
gatsby-source-notion-contents
Advanced tools
Get gatsby sources from notion
$ npm i -S gatsby-source-notion-contents
You need a token to use this package if you want to get private contents.
You can get it from Notion.so cookie. the key of it is token_v2
.
type Option = {
token?: string; // Optional. need token when you need to get private contents.
ids?: string[]; // Optional. to get contents that are out of scope.
prefix?: string; // Optional. to add prefix into relative links.
removeStyle?: boolean; // Optional. to remove inline styles.
};
ids
If the URL is https://www.notion.so/Personal-Home-db45cd2e7c694c3493c97f2376ab184a
,
You need to add db45cd2e7c694c3493c97f2376ab184a
into options.ids
.
// In your gatsby-config.js
{
// other configs ...
plugins: [
// other plugins ...
{
resolve: `gatsby-source-notion-contents`,
options: {
token: '<<YOUR_NOTION_TOKEN>>',
ids: ['<<ID_OF_NOTION_PAGE>>'],
prefix: '/',
removeStyle: false,
},
},
]
}
query Notions {
allNotionContent {
edges {
node {
id
contentType
internal {
# ... other properties of internal
content
}
}
}
}
}
query Notion {
notionContent {
id
contentType
internal {
# ... other properties of internal
content
}
}
}
query Notion {
notionContent(id: { eq: "ID_SPECIFIC_POST" }) {
id
contentType
internal {
# ... other properties of internal
content
}
}
}
const Component = {
const data = useStaticQuery(graphql`
query Notion {
notionContent {
internal {
content
}
}
}
`);
return (
<div dangerouslySetInnerHTML={{ __html: data.notionContent.internal.content }} />
);
};
FAQs
Get gatsby sources from notion
We found that gatsby-source-notion-contents 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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.