
Research
NPM targeted by malware campaign mimicking familiar library names
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
anarchic-gui
Advanced tools
A Node and React Webpack Hyperchain Carlo GUI
npm i anarchic-gui
app
├───node.js
└───browser.js
node.js
const GUI = require('anarchic-gui/node')
const { runDevServer, build, launch } = GUI({
browser: require.resolve('./browser')
})
await build() // OR
await runDevServer()
// then
launch()
browser.js
const { render, h } = require('anarchic-gui/browser')
render(() => {
return h.div('Hello world!')
})
node node.js
const GUI = require('anarchic-gui/node')
const {...} = GUI(opts)
{...}
Result of Carlo's carlo-webpack
opts
browser
entry
[string]
Webpack's entry fileglobals
[object]
Entries made available as globals via Webpack's DefinePluginhtml
[object]
Options for html-webpack-plugin
webpack
[object]
Options for webpack.config
carlo
[object]
Options for Carlo
const { render, h } = require('anarchic-gui/browser')
render(() => {
return h.div('Hello World!')
})
render
[function]
Function that takes a callback that should return an HTML or React(-like) Element which will be rendered in the Browser.
h
[object]
Hyperchain (/react
) reviver instance.
const { H, h } = require('anarchic-gui/browser')
H
[function]
Hyperchain (/react
) reviver functionh
[object]
An instance of H()
const { createElement } = require('anarchic-gui/browser')
createElement
[function]
React's createElement
FAQs
A Node and React Webpack Hyperchain Carlo GUI
The npm package anarchic-gui receives a total of 19 weekly downloads. As such, anarchic-gui popularity was classified as not popular.
We found that anarchic-gui 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
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
Research
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
Research
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.