
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.
@atomicjolt/atomic-fuel
Advanced tools
This package contains all of the front-end library code for Atomic Jolt apps. It includes all front-end code that was previously in the client/libs directory.
You should install atomic fuel into each individual app not in the client directory. Just add as a regular dependency.
yarn add atomic-fuel
All of the code is found in the libs folder which has the following structure
libs/
-- actions
-- api
-- communications
-- components
-- constants
-- decorators
-- graphql
-- libs
-- loaders
-- middleware
-- reducers
-- specs_support
-- store
If you wanted to use, for example, libs/store/configure_store.js you would write the following:
import configureStore from 'atomic-fuel/libs/configure_store.js';
Alternatively, there is an index file which simply exports everything for convenience, so you can do this:
import { configureStore } from 'atomic-fuel';
To build the lib folders and types run:
yarn build
Run tests:
yarn test
Run tests with Chrome DevTools (i.e. use debugger in your tests):
chrome://inspectThen you can run tests using:
yarn test:debug
FAQs
Atomic Jolt's front-end library code
We found that @atomicjolt/atomic-fuel demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

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.