
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.
@best-apps/gfx-editor
Advanced tools
Canvas editor using Fabricjs. Available as a React component and in VanillaJS
See CONTRIBUTING.md
🚧 Coming soon 🚧
Run:
yarn
yarn storybook
div
with width
, height
, and position
styles so that the editor can fill this container element.GFXProvider
and provide it a valid config
object. You can also provide it a react ref as gfxRef
. It will get initialized with a gfx
instance object.FullInterface
or BasicInterface
component.Here's an example
import { useRef, useState } from 'react';
import { APIProvider, GFXProvider, GFXType } from '@agencyenterprise/gfx-editor'
import BasicInterface from 'src/Interfaces/BasicInterface/BasicInterface';
function App() {
const gfxRef = useRef<GFXType>();
return (
<div
style={{
width: 400,
height: 600,
position: 'relative' // You have to wrap the editor in an element with width/height and position: fixed/relative/absolute
}}
>
<APIProvider>
<GFXProvider
gfxRef={gfxRef}
config={{}}
>
<BasicInterface />
{/* Or <FullInterface /> */}
</GFXProvider>
</APIProvider>
</div>
)
}
TBD. Wait until the editor is configured for the GFX Storefront first
FAQs
GFX editor
The npm package @best-apps/gfx-editor receives a total of 45 weekly downloads. As such, @best-apps/gfx-editor popularity was classified as not popular.
We found that @best-apps/gfx-editor 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.