Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@equinor/workspace-core
Advanced tools
[![Version](https://img.shields.io/npm/v/@equinor/workspace-core.svg)](https://npmjs.org/package/@equinor/workspace-core) [![Downloads/week](https://img.shields.io/npm/dw/@equinor/workspace-core.svg)](https://npmjs.org/package/@equinor/workspace-core) [
npm install @equinor/workspace-core --save
import { createWorkspaceController } from "@equinor/workspace-core"
const workspaceController = createWorkspaceController();
The workspace controller is a common hub for all controllers. The idea is for the workspace controller to be pure JS/TS and not be dependent on any JS framework. The Workspace controller will consist of the followings sections.
A collection of building blocks allows the creation of a workspace. And the building blocks themselves are interchangeable and will be customized toward the workspaces needs. Controllers
are the actuators of the workspace; nothing happens without a controller. The goal is to create many small and specific controllers that do one thing well. To add a controller use the addController
function on the workspace controller.
const controller = {
name: 'dataSource',
controller: dataSourceController,
config: (dc, ws) => {
dc.onDataChanged(data) => {
wc.setData(data);
});
},
};
const workspaceController = createWorkspaceController();
workspaceController.addController(controller)
Controllers are supposed to be 100% decoupled from each other. Middleware is the translator that connects one or multiple controllers. When adding a controller a sort of middleware can be added to the config
as shown above. This ensures that all controllers can be used standalone and ensures high flexibility with low complexity. The addMiddleware
function allows you to do the same as the config but you only get supplied the workspace controller.
function myDataSourceMiddleware( ws) => {
ws.controller.dataSource.onDataChanged(data) => {
wc.setData(data);
});
};
workspaceController.addMiddleware(myDataSourceMiddleware);
This will do the same as when you registered the controller but middleware allows for extreme flexibility, having the whole workspace at your disposal.
A workspace i driven by data has a data
and filteredData
field. to sett these use the corresponding setData
and setFilteredData
functions. When data is has changed all callback registered ont the onDataChanged
event is triggered. Same thing goes for onFilteredDataChanged
.
Reserved slot for the developer(you) to define and utilize. Most common use for it is to share data from one controller to another. Through context and middleware but can be used passed data inn to the context.
setContext
workspaceController.setContext((currentContext)=> ({
...currentContext,
person: {
name: "Tom",
lastName: "Jones"
age: 82
}
}));
To be abel to trigger events by click
, this will trigger the onClick
event on the workspace controller.
workspaceController.addController({
name: 'dataSource',
controller: dataSourceController,
config: (dc, ws) => {
dc.onDataChanged((data) => {
wc.setData(data);
});
wc.onClick((e, ws) => {
if (e.type === "updateData") {
ws.setData(e.data);
}
});
},
});
workspaceController.click({
type: "updateData",
data: [
// some data...
]
});
The workspace controller consists of the "Core" events that most controllers will depend on in some form. Core Workspace events are the following.
Core Functions:
Controllers and middleware usually bind through workspace controller events. Alternatively, you can extend the workspace controller with common data fields through the controller's context property.
Here is an diagram of use se figure1:
flowchart LR
classDef default fill:#0000,stroke:#333,stroke-width:4px,stroke-dasharray: 5 5,text-align:center,color:#fff;
classDef controller fill:#006699,stroke:none,text-align:left;
classDef config fill:#008899,stroke:none
classDef middleware fill:#996666,stroke:none
wc[<h2>Workspace Controller</h2><span><br> - Controllers <br> - Middleware/Binders <br> - Config <br> - Context<br>- Workspace Events </span>]:::controller
wsDataSource[<b>Data Source</b> Controller]:::controller
wsFilter[<b>Data Filter</b> Controller]:::controller
wsFilterConfig[Data Source - Config]:::config
wsDataSourceConfig[Data Filter - Config]:::config
subgraph Read Controller
wcErrorConfig[Error Config]:::config
wcError[Error Controller]:::controller
end
subgraph Middleware
wcLoggerMiddleware[Development Logger]:::middleware
end
wc --> wcLoggerMiddleware
wsDataSource --> wcLoggerMiddleware
wsFilter --> wcLoggerMiddleware
wc --> wcErrorConfig --> wcError
subgraph Controllers
direction BT
wsFilter --> wsFilterConfig
wsDataSource --> wsDataSourceConfig
end
wsDataSourceConfig <--> wc
wsFilterConfig <--> wc
Figure 1. Workspace Controller connections for Fusion Workspace Framework
This library was generated with Nx.
Run nx build workspace-core
to build the library.
Run nx test workspace-core
to execute the unit tests via Jest.
FAQs
[![Version](https://img.shields.io/npm/v/@equinor/workspace-core.svg)](https://npmjs.org/package/@equinor/workspace-core) [![Downloads/week](https://img.shields.io/npm/dw/@equinor/workspace-core.svg)](https://npmjs.org/package/@equinor/workspace-core) [![
The npm package @equinor/workspace-core receives a total of 5 weekly downloads. As such, @equinor/workspace-core popularity was classified as not popular.
We found that @equinor/workspace-core demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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.