npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@j-m-l/simple-react-redux-with-api-calls

v1.0.3

Published

Library to help the creation of redux store and api calls

Downloads

5

Readme

Simple react redux with api calls

This is:

  • Made to ease the creation of redux stores with api calls
  • Super easy way to create Reducer and dispacthers
  • Package with zero production dependencies
  • Package with some kind of mongoose sanitization

Currently this only allows the use of pre-defined endpoints (listed at the end), but maybe in a near future there's a possibility to add endpoints, and maybe some validators too.

The guide

Install this package with

npm install @j-m-l/simple-react-redux-with-api-calls

Import it to the project with

const SMEE = require('@j-m-l/simple-react-redux-with-api-calls');

Call it with following values (existing endpoints listed below)

const { Reducer, Dispatchers } = SRRWAC(ReducerName, apiPath, wantedEndpoints, axiosInstance);

This will create a store for you with following initialState. GET /:id will write the current all other endpoints will update the All array

const initialState = {
  all: [],
  current: {},
};

Example code

testReducer.js

import SRRWAC from '@j-m-l/simple-react-redux-with-api-calls';
import axios from 'axios';

const test = SRRWAC('test', 'http://localhost:3001/api/test', ['get', 'getAll', 'replace', 'delete', 'add', 'update'], axios);

export const Reducer = test.Reducer;
export const Dispatchers = test.Dispatchers;

store.js

import { createStore, combineReducers } from 'redux'
import { Reducer } from './testreducer';

const reducers = combineReducers({
  test: Reducer,
});

const store = createStore(
  reducers
);

export default store

index.js

import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
import { Provider } from 'react-redux';
import store from './store';

ReactDOM.render(
  <React.StrictMode>
    <Provider store={ store }>
      <App />
    </Provider>
  </React.StrictMode>,
  document.getElementById('root')
);

App.js

import React from 'react'
import { useSelector, useDispatch  } from 'react-redux'
import { Dispatchers } from './testreducer';

function App() {
  const dispatch = useDispatch();

  const addEntry = () => {
    Dispatchers.add({ name: 'jeejee', desc: 'jotain' }, dispatch);
  }
  const getAll = () => {
    Dispatchers.getAll(dispatch);
  }

  const all = useSelector(state => state.test.all);
  console.log('store', all);

  return (
    <div className="App">
      <nav>
        <section>
          <h1>something { JSON.stringify(all, null, 2) }</h1>
          <button onClick={addEntry}>lisää</button>
          <button onClick={getAll}>getAll</button>
        </section>
      </nav>
    </div>
  )
}

export default App

This can be combined with https://www.npmjs.com/package/@j-m-l/simple-mongo-express-endpoints to make simple Fullstack apps

Available endpoints are:

  • get (Get by id /api/something/:id) http get
  • getAll (Get all entried from that collection) http get
  • add (Add new entry to the collection) http post
  • update (Partially update the entry from collection) http patch
  • replace (Replace the entry from the collection) http put
  • delete (Delete entry from the collection) http delete

To select these to the wantedEndpoints, just add the wanted endpoint names to an array i.e., ['get', 'getAll', 'add', 'update', 'replace', 'delete']