使用 react-aad-msal 时 chokidar 出错
Error from chokidar while using react-aad-msal
我正在使用 azure active directory,我得到了这个奇怪的模块未找到错误,然后是一个 chokidar 错误:
./node_modules/react-aad-msal/dist/commonjs/MsalAuthProvider.js
Module not found: Can't resolve 'msal' in 'C:\Users\paull\Monitoring_SOT\monitoring_sot\node_modules\react-aad-msal\dist\commonjs'
Error from chokidar (C:\): Error: EBUSY: resource busy or locked, lstat 'C:\hiberfil.sys'
Error from chokidar (C:\): Error: EBUSY: resource busy or locked, lstat 'C:\pagefile.sys'
Error from chokidar (C:\): Error: EBUSY: resource busy or locked, lstat 'C:\swapfile.sys'
这部分的目的是创建一个authProvider。
我正在使用 create-react-app,这是我的 authProvider。使用最新版本的一切。
//Configuration
const config = {
auth: {
authority: 'https://login.microsoftonline.com/common',
clientId: '<clientid>',
},
cache: {
cacheLocation: "localStorage",
storeAuthStateInCookie: true
}
};
//Paramètres
const authenticationParameters = {
scopes: [
'profile.read'
]
};
//Options
const options = {
loginType: LoginType.Redirect
}
export const authProvider = new MsalAuthProvider(config, authenticationParameters, options)
事实上,当您安装 npm react-aad-msal 时,它不会将 msal 依赖项添加到您的项目中。
你应该做 npm i msal
放在这里让人们知道
我正在使用 azure active directory,我得到了这个奇怪的模块未找到错误,然后是一个 chokidar 错误:
./node_modules/react-aad-msal/dist/commonjs/MsalAuthProvider.js
Module not found: Can't resolve 'msal' in 'C:\Users\paull\Monitoring_SOT\monitoring_sot\node_modules\react-aad-msal\dist\commonjs'
Error from chokidar (C:\): Error: EBUSY: resource busy or locked, lstat 'C:\hiberfil.sys'
Error from chokidar (C:\): Error: EBUSY: resource busy or locked, lstat 'C:\pagefile.sys'
Error from chokidar (C:\): Error: EBUSY: resource busy or locked, lstat 'C:\swapfile.sys'
这部分的目的是创建一个authProvider。 我正在使用 create-react-app,这是我的 authProvider。使用最新版本的一切。
//Configuration
const config = {
auth: {
authority: 'https://login.microsoftonline.com/common',
clientId: '<clientid>',
},
cache: {
cacheLocation: "localStorage",
storeAuthStateInCookie: true
}
};
//Paramètres
const authenticationParameters = {
scopes: [
'profile.read'
]
};
//Options
const options = {
loginType: LoginType.Redirect
}
export const authProvider = new MsalAuthProvider(config, authenticationParameters, options)
事实上,当您安装 npm react-aad-msal 时,它不会将 msal 依赖项添加到您的项目中。
你应该做 npm i msal
放在这里让人们知道