
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
gatsby-transformer-archieml-markdown
Advanced tools
Parses ArchieML files into gatsby, with an option to parse markdown strings within the ArchieML.
npm install gatsby-transformer-archieml-markdown
You also need to have gatsby-source-filesystem
installed and configured so it points to your files.
In your gatsby-config.js
:
module.exports = {
plugins: [
`gatsby-transformer-archieml-markdown`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: `./src/data/`,
},
},
],
}
Because of the way that gatsby requires a common schema for each type, this conflicts with ArchieML's freeform structure. To get around this, gatsby-transformer-archieml-markdown serializes the ArchieML object into a string. This behavior can be disabled if needed.
You can query your archieML files like:
{
allDataArchieMl {
edges {
node {
object
}
}
}
}
Which would return:
{
allLettersJson: {
edges: [
{
node: {
object: "{\"object\":\"test\"}",
},
},
{
node: {
object: "{\"object\":\"test\"}",
},
},
]
}
}
typeName
[string|function][optional]
The default naming convention documented above can be changed with either a static string value (e.g. to be able to query all archieml files with a simple query):
module.exports = {
plugins: [
{
resolve: `gatsby-transformer-archieml-markdown`,
options: {
typeName: `ArchieML`, // a fixed string
},
},
],
}
{
allArchieMl {
edges {
node {
object
}
}
}
}
or a function that receives the following arguments:
node
: the graphql node that is being processed, e.g. a File node with ArchieML contentobject
: the parsed ArchieML objectmodule.exports = {
plugins: [
{
resolve: `gatsby-transformer-archieml-markdown`,
options: {
typeName: ({ node, object }) => object.level,
},
},
],
}
FAQs
A gatsby transformer for ArchieML and Markdown
The npm package gatsby-transformer-archieml-markdown receives a total of 2 weekly downloads. As such, gatsby-transformer-archieml-markdown popularity was classified as not popular.
We found that gatsby-transformer-archieml-markdown 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.