
Product
Introducing Scala and Kotlin Support in Socket
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
nate-react-api-helpers
Advanced tools
## Installation ``` npm install nate-react-api-helpers // or yarn add nate-react-api-helpers ```
npm install nate-react-api-helpers
// or
yarn add nate-react-api-helpers
import {APIBase} from "nate-react-api-helpers/APIBase";
class API extends APIBase {
getCustomers(input: {limit?: number}) {
return this.fetcher.get<Customer[]>("/api/customers", input);
}
}
interface Customer {
id: number;
}
export const api = new API();
{withoutAuth: true}
on useAsync
)import {api} from "../api/API";
import {AuthProvider, useAsyncAction} from "nate-react-api-helpers/Auth"; import {useAuthenticated} from "./Auth";
function App() {
return (<AuthProvider>
<LoginModal />
</AuthProvider>)
}
function LoginModal() {
const auth = useAuthenticated();
const login = useAsyncAction(async (input) => {
if(await api.login(input)) {
auth.setAuthenticated(true);
}
// ...
}, []);
return (
<Dialog>
{/* .. inputs .. */}
<Button onClick={() => login.callback({username, password})}>
</Dialog>
);
}
import {useAsync} from "nate-react-api-helpers/AsyncUtils";
import {api} from "../api/API";
import React from "react";
import {Grid} from "@material-ui/core";
export function Customers() {
const customers = useAsync(() => api.getCustomers());
// will show as loading while we aren't authenticated
// after useAuthenticated().setAuthenticated(true), this will
// automatically re-fetch and resolve normally
if(customers.loadingOrError) {
return customers.LoadingOrErrorElement;
}
return (
<Grid container direction="row" spacing={2}>
{(customers.result || []).map(p => <Grid item key={p.id}>
{p.name}
</Grid>)}
</Grid>
)
}
export function PublicProducts() {
const products = useAsync(() => api.getProducts(), {withoutAuth: true});
if(products.loadingOrError) {
return products.LoadingOrErrorElement;
}
return (
<Grid container direction="row" spacing={2}>
{(products.result || []).map(p => <Grid item key={p.id}>
{p.name}
</Grid>)}
</Grid>
)
}
FAQs
## Installation ``` npm install nate-react-api-helpers // or yarn add nate-react-api-helpers ```
The npm package nate-react-api-helpers receives a total of 118 weekly downloads. As such, nate-react-api-helpers popularity was classified as not popular.
We found that nate-react-api-helpers demonstrated a healthy version release cadence and project activity because the last version was released less than 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 Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
Application Security
/Security News
Socket CEO Feross Aboukhadijeh and a16z partner Joel de la Garza discuss vibe coding, AI-driven software development, and how the rise of LLMs, despite their risks, still points toward a more secure and innovative future.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.