Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@framerjs/component-importer
Advanced tools
Example utility that helps importing React components into Framer with basic support for TypeScript and Flow.
Example utility that helps importing React components into Framer with basic support for TypeScript and Flow.
yarn build
yarn cli [src-dir] [out-dir] [--lang [typescript/flow]] [--pattern '**/*.{tsx,ts,js,jsx}']
yarn cli ../my-project/src ../my-project/framer
yarn link
in the project folderyarn link component-importer
in the new projectimport { analyze, convert, generate, makePrettier } from "component-importer"
async function main() {
const files = ["a.tsx", "b.tsx"]
const processedFiles = await analyze(files, "typescript") // parses source files, analyzes components and type information
for (const processedFile of processedFiles) {
for (const component of processedFile.components) {
convert(component) // Adds Framer X component info (property controls)
// Optional: customize the components before generating the code
const code = generate(component) // Generates the code
const prettyCode = await makePrettier(code) // Formats the code
console.log(prettyCode)
// Save the code to a file
}
}
}
main()
Another example can be found in src/cli.ts
FAQs
```ts import * as React from "react" import * as Fabric from "office-ui-fabric-react" import { addPropertyControls, ControlType } from "framer"
The npm package @framerjs/component-importer receives a total of 0 weekly downloads. As such, @framerjs/component-importer popularity was classified as not popular.
We found that @framerjs/component-importer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 55 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.