Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
gatsby-plugin-argos
Advanced tools
Push your gatsby screenshots to Argos, and check for visual regression before releasing.
If you already have a screenshots available:
npm install --save-dev gatsby-plugin-argos
If you don't have screenshots available:
npm install --save-dev gatsby-plugin-argos gatsby-plugin-screenshot
Just add the plugin to the plugins array in your gatsby-config.js
.
Here's a travis example with available screenshots:
// in your gatsby-config.js
module.exports = {
plugins: [
...(process.env.CI
? [
{
resolve: "gatsby-plugin-argos",
options: {
branch: process.env.TRAVIS_BRANCH,
commit: process.env.TRAVIS_COMMIT,
dir: "./where-your-screenshots-are",
token: process.env.ARGOS_TOKEN,
},
},
]
: []),
],
};
Here's a travis example without available screenshots:
// in your gatsby-config.js
module.exports = {
plugins: [
...(process.env.CI
? [
{
resolve: "gatsby-plugin-argos",
options: {
branch: process.env.TRAVIS_BRANCH,
commit: process.env.TRAVIS_COMMIT,
token: process.env.ARGOS_TOKEN,
},
},
]
: []),
],
};
You can also override gatsby-plugin-screenshot options if needed:
// in your gatsby-config.js
module.exports = {
plugins: [
...(process.env.CI
? [
{
resolve: "gatsby-plugin-argos",
options: {
branch: process.env.TRAVIS_BRANCH,
browser: {
args: [
"--no-sandbox",
"--disable-setuid-sandbox",
"--start-fullscreen",
],
},
commit: process.env.TRAVIS_COMMIT,
dir: "./screenshots",
port: 8000,
token: process.env.ARGOS_TOKEN,
},
},
]
: []),
],
};
FAQs
Push your Gatsby screenshots to Argos CI.
The npm package gatsby-plugin-argos receives a total of 0 weekly downloads. As such, gatsby-plugin-argos popularity was classified as not popular.
We found that gatsby-plugin-argos demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.