Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
@victorpotasso/fluxo
Advanced tools
A Vanilla FLUX library.
npm install --save @victorpotasso/fluxo
import { createStore, applyMiddleware } from '@victorpotasso/fluxo';
import reducers from './data/reducers';
import middlewares from './data/middlewares';
const store = createStore({
reducers,
middlewares: applyMiddleware(...middlewares),
initialState: {},
});
export default store;
import { connect } from '@victorpotasso/fluxo';
import * as selectors from './../data/selectors';
import * as actions from './../data/actions';
class SampleComponent {
constructor(selector) {
this.el = document.querySelector(selector);
this.title = this.el.querySelector('.value-sample');
this.count = this.el.querySelector('.value-count');
this.button = this.el.querySelector('.btn-sample');
this.button.addEventListener('click', this.onClick.bind(this));
this.render();
}
onClick() {
if (this.props.update) {
const randomString = Math.random().toString(36).replace(/[^a-z]+/g, '').substr(0, 10).toUpperCase();
this.props.update(randomString);
this.props.increment();
}
}
render() {
this.title.textContent = this.props.value1;
this.count.textContent = this.props.value2;
}
}
const mapStateToProps = getState => ({
value1: `Sample: ${selectors.sample(getState())}`,
value2: selectors.count(getState()),
});
const mapDispatchToProps = (dispatch, ownProps) => ({
update: value =>
dispatch(actions.update(value)),
increment: () =>
dispatch(actions.increment()),
});
export default connect(mapStateToProps, mapDispatchToProps)(SampleComponent);
const sampleMiddleware = store => next => action => {
return next(action);
};
export default sampleMiddleware;
const initalState = {}
const homeReducer = (state = initalState, action) => {
return state;
}
export default homeReducer;
export const test = (state) => state.test;
export const foo = (state) => test(state).foo; // state.test.foo
export const bar = (state) => test(state).bar; // state.test.bar
Install the dependences
npm install
Start the project
npm start
Victor Potasso victorpotasso@gmail.com
FAQs
vanilla flux
The npm package @victorpotasso/fluxo receives a total of 0 weekly downloads. As such, @victorpotasso/fluxo popularity was classified as not popular.
We found that @victorpotasso/fluxo 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 now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.