Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
It's a React and Flux based workspace manager aiming to implement all the feature that you got use to in modern graphics editors. (like Adobe or Autodesk products) Work is in progress but the API will look something like this:
import {Spaceman, SpacemanStore} from 'spaceman'
import defaultWorkspace from './defaultWorkspace'
var workspace = localStoreage.lastWorkspace || defaultWorkspace
Workspace = new SpacemanStore(workspace)
Workspace.setTabContent('view', <Viewport/>)
Workspace.setTabContent('tree', <TreeView/>)
Workspace.setTabContent('style', <StyleView/>)
...
Workspace.selectTab('tree')
Workspace.on('change', () => {//on change tabs, resize, etc.
localStoreage.lastWorkspace = Workspace.model.getSource()
})
React.render(<Spaceman store={Workspace}/>, mountNode)
defaultWorkspace.js
export default
{type: 'divider', direction: 'row', children: [
{type: 'divider', direction: 'column', size: 7, children: [
//Status bar
{type: 'block', size: 34, sizeMode: 'fix', resizeable: false, children: [
{type: 'tab', id: 'statusBar', hideableHead: true},
]},
{type: 'divider', children: [
{type: 'divider', direction: 'row', children: [
//left Toolbar
{type: 'divider', size: 1, direction: 'column', collapsed: true, children: [
{type: 'block', children: [
{type: 'tab', id: 'assets', icon: 'cloud-upload', label: 'Assets'},
{type: 'tab', id: 'catalogue', icon: 'cubes', label: 'Catalogue'},
{type: 'tab', id: 'config', icon: 'cog', label: 'Config'},
]},
]},
//Viewport
{type: 'block', size: 4, children: [
{type: 'tab', id: 'view', label: 'View', hideableHead: true},
]},
]}
]},
]},
{type: 'divider', size: 1.89, direction: 'column', children: [
{type: 'block', currTabIdx: 1, children: [
{type: 'tab', id: 'props', label: 'Props'},
{type: 'tab', id: 'style', label: 'Style'},
]},
{type: 'block', children: [
{type: 'tab', id: 'tree', label: 'Navigator'},
]},
]}
]}
FAQs
Manage monorepo workspaces with a prompt-based CLI
The npm package spaceman receives a total of 4 weekly downloads. As such, spaceman popularity was classified as not popular.
We found that spaceman 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
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.