
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
Manages state in worker threads through simple actions, reducers and selectors
Manages state in worker threads through simple actions, reducers and selectors.
While using Redux I realised that your view and your state are decoupled enough that they could be placed in separate threads. Actions are scheduled and sent across to workers which like in Redux reduce the state before sending back the new state.
This project is in Alpha stage and should really only be used by contributors.
yarn add arcturus or npm install arcturus
In your main thread
import { Arcturus } from 'arcturus';
// Create the store and pass in the location of the worker file(s)
const store = new Arcturus(['/dist/worker.js']);
// Here we sstablish a connection with the workers
store.establishConnection().then(() => {
// Subscribe for any changes, this can be done anytime after we create the store
store.subscribe(getState => {
console.log(getState());
})
// Schedule an action to be processed
store.dispatch({ type: 'increment' })
});
In a separate worker thread
import { createArcturusWorker, transformDomains } from 'arcturus';
// Initial state of this reducer's domain
const initialState = {
count: 1
}
/**
* Takes current state and action and returns new state
* @param {object|undefined} [state=initialState] current state (domain)
* @param {object} action
* @return {object}
*/
function reducer (state = initialState, action) {
switch(action.type) {
case 'increment':
return { count: state.count + 1 };
default:
return state;
};
}
/**
* Return a selection of the state (domain)
* @param {object} state
* @return {any}
*/
function selector (state) {
return state;
}
// domains
const domains = {
example: {
reducer,
selector
}
}
createArcturusWorker(...transformDomains(domains));
Currently we only have one example:
If you would like to contrubite please let me know or just createa PR this project is still in it's early stages. For Direction please see the roadmap section below.
FAQs
Manages state in worker threads through simple actions, reducers and selectors
We found that arcturus 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.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.