Installation
Installing with a Package Manager
It can be installed as an npm package.
npm install @wepin/login-js
Once the installation is complete, initialize the WepinLogin instance using the app ID and app key assigned after registering the app. This will enable the use of WepinLogin.
// 1. Import the package
import { WepinLogin } from '@wepin/login-js'
// 2. Initialization
const wepinLogin = new WepinLogin({
appId: 'your-wepin-app-id',
appKey: 'your-wepin-api-key',
})
This package is designed to work only in Client Side Rendering (CSR) environments. If you are using this package in a Server Side Rendering (SSR) environment, you need to configure it so that the package is loaded only on the client side.
Refer to the following code for implementation:
const initWepinLogin = async () => {
const { WepinLogin} = await import('@wepin/login-js');
const wepinLogin = new WepinLogin({
appKey: '',
appId: '',
});
await wepinLogin .init({
defaultLanguage: 'ko',
});
}
Last updated
Was this helpful?