
Research
/Security News
Mini Shai-Hulud Campaign Hits Red Hat Cloud Services npm Packages
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.
ABP-REACT is a versatile React library that provides convenient tools and utilities for integrating with the ABP (ASP.NET Boilerplate) framework in your React applications.
ABP-REACT is a versatile React library that provides convenient tools and utilities for integrating with the ABP (ASP.NET Boilerplate) framework in your React applications. This library simplifies common tasks such as authentication, localization, and accessing ABP-related functionalities.
npm install abp-react
import { abp, AbpWrapper, initialiseApp } from 'abp-react';
import { useAbp, useAbpUser } from 'abp-react';
import { login, clearAuthCookies } from 'abp-react';
import { L } from 'abp-react';
A. With AbpWrapper wrap your main application component with AbpWrapper to enable ABP integration. Pass a fallback function to be seen while loading the configuration from ASP.NET Boilerplate.
function App() {
return (
<AbpWrapper baseUrl="your base url" fallback={<Loading />}>
{/* Your application components */}
</AbpWrapper>
);
}
Optionally you can specify a "tenantId" to override the default one.
B. Without AbpWrapper If you're not using the AbpWrapper component, initialize your application with the configuration response from the ABP backend.
const abpConfigResponse = initialiseApp(abpConfigResponse); // Fetch configuration from ABP backend;
Access ABP instance and its functionalities using the useAbp hook.
function MyComponent() {
const abpInstance = useAbp();
const { abp } = abpInstance;
// Use abpInstance methods and properties
}
Retrieve information about the current user with the useAbpUser hook. Should only be used inside "AbpWrapper" component
function UserProfile() {
const user = useAbpUser<MyUserType>();
// Access user information
}
For simplicity you can create an abstraction over the useAbpUser hook. If no user type is provided useAbpUser will return ANY.
Perform user login using the login method. Perform the login operation and pass "expireInSeconds", "accessToken", "encryptedAccessToken"
async function loginUser(username, password) {
let loginResponse = ...
try {
await login(loginResponse);
// Successful login logic
} catch (error) {
// Handle login error
}
}
Clear authentication cookies using clearAuthCookies.
function logoutUser() {
clearAuthCookies();
// Additional logout logic
}
Access localization resources using the L function.
function MyLocalizedComponent() {
const localizedText = L('key', 'your source name here');
// Use localizedText in your component
}
We recommend overriding the "L" function so it would be easier to use.
function customL(key) {
const sourceName = process.env.SOURCE_NAME;
return L(key, sourceName);
}
Feel free to contribute to the abp-react library. Fork the repository, make your changes, and submit a pull request. Your contributions are highly appreciated!
FAQs
ABP-REACT is a versatile React library that provides convenient tools and utilities for integrating with the ABP (ASP.NET Boilerplate) framework in your React applications.
The npm package abp-react receives a total of 21 weekly downloads. As such, abp-react popularity was classified as not popular.
We found that abp-react 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.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.

Research
/Security News
The North Korean malware loader hides in a Packagist-listed package and its GitHub branch to fetch and execute remote code in a likely Contagious Interview-style lure.

Security News
The Rust project is moving toward formal rules on LLM use in contributions after months of internal debate over maintainer burden, code quality, and contributor experience.