
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@figma-export/cli
Advanced tools
Command line for @figma-export.
While you can install it globally on your machine, it's much better to install it locally project by project.
npm install --save-dev @figma-export/cli
Note: If you do not have a
package.json
, create one before installing or runnpm init -y
to automatically create ones.
export FIGMA_TOKEN=<personalAccessToken>
npx figma-export COMMAND
Note: These instructions use the
npx
command to run the locally installed executables. You can drop it inside of an npm run script or you may instead execute with the relative path instead../node_modules/.bin/figma-export
help
npx figma-export help
components
Exports components from a Figma file
npx figma-export components FILEID
# help
npx figma-export help components
--transformer
-T
option
npx figma-export components FILEID -T TRANSFORMER
A transform function receives an SVG and turns it into something new.
You can create you own:
// with promise
module.exports = options => {
return (svg) => new Promise((resolve, reject) => {
resolve(svg);
});
}
// with async/await
module.exports = options => {
return async (svg) => {
return svg;
};
}
or install an official transformer:
Package | Version |
---|---|
@figma-export/transform-svg-with-svgo |
--outputter
-O
option
npx figma-export components FILEID -O OUTPUTTER
An output function receives a list of pages, in which each page contains components.
You can create you own:
module.exports = options => {
return async pages => {
console.clear();
console.log(JSON.stringify(pages));
};
}
or install an official outputter:
Package | Version |
---|---|
@figma-export/output-components-as-svg | |
@figma-export/output-components-as-es6 |
You can create a file .figmaexportrc.js
or use a different configuration file providing -c
or --config
option to figma-export components
command.
npx figma-export components FILEID -c .figmaexportrc.prod.js -T TRANSFORMER
This file contains the configs
object that you can use to provide special options to transformers
and outputters
.
// .figmaexportrc.js
module.exports = {
configs: [
['@figma-export/transform-svg-with-svgo', {
plugins: [
{ removeViewBox: false },
{ removeDimensions: true }
]
}]
]
};
FAQs
Command line for @figma-export
The npm package @figma-export/cli receives a total of 16,988 weekly downloads. As such, @figma-export/cli popularity was classified as popular.
We found that @figma-export/cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.