![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@portkey/did-ui-react
Advanced tools
npm install "@portkey/did-ui-react
yarn add "@portkey/did-ui-react
import { SignIn } from '@portkey/did-ui-react';
import { useState, useEffect } from 'react';
const App = () => {
const [open, setOpen] = useState<boolean>();
useEffect(() => {
setOpen(true);
}, []);
return (
<>
<SignIn open={open} />
</>
);
};
If you use it on applications that don't require cross-domain, like Chrome extensions,
please configure your provider address using ConfigProvider.setGlobalConfig
:
import {ConfigProvider} from '@portkey/did-ui-react';
ConfigProvider.setGlobalConfig({
requestDefaults: {
baseURL: 'http://localhost:3000',
},
graphQLUrl: 'http://localhost:3000/graphQL'
});
If you need to customize persistent storage, the default storage is localStorage
:
export interface IStorageSuite {
getItem: (key: string) => Promise<any>;
setItem: (key: string, value: string) => Promise<any>;
removeItem: (key: string) => Promise<any>;
}
ConfigProvider.setGlobalConfig({
storageMethod: IStorageSuite
})
@portkey/did-ui-react
is written in TypeScript with complete definitions.
You can submit any ideas as pull requests or as GitHub issues. let's build a better antd together.
FAQs
Unknown package
The npm package @portkey/did-ui-react receives a total of 328 weekly downloads. As such, @portkey/did-ui-react popularity was classified as not popular.
We found that @portkey/did-ui-react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 open source maintainers 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.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.