
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@semoss/renderer
Advanced tools
@semoss/renderer is a package that allows you to quickly embed drag and drop apps that are built within semoss into your own javascript/react applications
@semoss/renderer is a package that allows you to quickly embed drag and drop apps that are built within semoss into your own javascript/react applications
Have an idea on what you would like to build in a no code environment. Go to our Drag and Drop App Builder to build out your UI and Backend.
Once you have fully built out your app, within our no code envrionment.
We have given access to a cool development tool that allows you to copy the underlying JSON that is used to make your app function.
Press ctrl + d while in the edit mode of the workspace.
After doing this you should see a popup come up that allows you to copy that JSON.
This is where the fun comes in.
We have developed a npm package that makes it easy to embed that very JSON into any react application.
In your React Component:
./constants.ts
export const BLOCKS = {
"queries": {},
"blocks": {
"page-1": {
"slots": {
"content": {
"children": [
"text--1967"
],
"name": "content"
}
},
"widget": "page",
"data": {
"route": "",
"style": {
"padding": "24px",
"fontFamily": "roboto",
"flexDirection": "column",
"display": "flex",
"gap": "8px"
}
},
"listeners": {
"onPageLoad": [
{
"message": "RUN_QUERY",
"payload": {
"queryId": "test"
}
},
{
"message": "RUN_QUERY",
"payload": {
"queryId": "di"
}
}
]
},
"id": "page-1"
},
"text--1967": {
"id": "text--1967",
"widget": "text",
"parent": {
"id": "page-1",
"slot": "content"
},
"data": {
"style": {
"padding": "4px",
"whiteSpace": "pre-line",
"textOverflow": "ellipsis"
},
"text": "Add Blocks",
"variant": "h1",
"route": "text--1967"
},
"listeners": {},
"slots": {}
}
},
"variables": {},
"executionOrder": [],
"version": "1.0.0-alpha.4"
}
import { Renderer, ActionMessages, SerializedState } from '@semoss/renderer';
import { BLOCKS } from './constants.ts
<InsightProvider /> and <Renderer /> within the JSX of your react component<Renderer state={BLOCKS} MODULE={process.env.MODULE}/>
MODULE allows you to hit the necessary endpoints that are used to run pixels within the renderer package
State prop represents the constant we have in ./constants.ts. Reference step 1
FAQs
@semoss/renderer is a package that allows you to quickly embed drag and drop apps that are built within semoss into your own javascript/react applications
We found that @semoss/renderer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.