New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

react-fastkit

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-fastkit

A React component module with obfuscation

latest
npmnpm
Version
1.0.11
Version published
Maintainers
1
Created
Source

react-fastkit

Note: This package is under active development.
react-fastkit is a fast, opinionated toolkit for React, providing both UI components and utility functions to speed up your workflow.

Features

  • UI Components: Plug-and-play components like Button, Layout, and more.
  • Utilities: Useful helpers such as formatDate and isEmail for common tasks.
  • API Helpers: Effortless API calls with built-in token and backend origin management.

Installation

Install via npm:

import { callApi, setBackendOrigin,setToken } from 'react-fastkit';

React.useEffect(() => { setToken('1234567890'); setBackendOrigin('https://jsonplaceholder.typicode.com'); }, []);

const handleCallApi = async () => { setError(null); setUsers([]); try { // Fetch users from JSONPlaceholder const res = await callApi('/users', {}, false); // publicCall = true const data = await res.json(); setUsers(data); } catch (err) { setError(err.message || 'Unknown error'); } };

Keywords

react

FAQs

Package last updated on 29 Nov 2025

Did you know?

Socket

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.

Install

Related posts