
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
@dmapper/auth-lti
Advanced tools
startupjs: >= 0.44.0
@startupjs/auth: >= 0.33.0
@startupjs/ui: >= 0.44.0
Импорт стратегии:
import { Strategy as LTIStrategy } from '@startupjs/auth-idg/server'
Импорт либы для конфига:
import conf from 'nconf'
В startupjsServer, в стратегии функции initAuth нужно добавить LTIStrategy с указанием обьекта опций:
initAuth(ee, {
strategies: [
new LTIStrategy(<options>)
]
})
Доступные опции
callbackUrl: <string> - опционально, дефолтное значение: '/auth/lti/callback'
dbSchools: <boolean> - опционально, дефолтное значение: false
collectionName: <string> - опционально если dbSchools со значение false, дефолтное значение: 'authLTISchools'
schools: <object> - опционально если dbSchools со значением true
Пример значения опции schools
{
<school-name>: {
consumerKey: <key>,
consumerSecret: <secret>
},
ucdavis: {
consumerKey: '12312k321l'
consumerSecret: '312kjh3k12jh''
},
....
}
Вы можете проинициализировать стратегию с предопределенными школами
{
schools: <object>
}
или использовать школы из базы данных
{
dbSchools: true
}
Отсутствует
Этот компонент предоставляет возможность добавлять новые школы и удалять ранее добавленные
import { List } from '@dmapper/auth-lti'
...
<List />
Компонент принимает следующие опции
collection: <string> - опционально, дефолтное значение: 'authLTISchools'
Если вы нуждаетесь в другом названии коллекции для хранения школ, то вы должны указать это соответсвующей опцией в стратегии и в компоненте:
initAuth(ee, {
strategies: [
new LTIStrategy({
dbScools: true,
collectionName: 'anotherName' <---
})
]
})
import { List } from '@dmapper/auth-lti'
...
<List
collection="anotherName" <---
/>
FAQs
LTI auth plugin for StartupJS auth module
The npm package @dmapper/auth-lti receives a total of 0 weekly downloads. As such, @dmapper/auth-lti popularity was classified as not popular.
We found that @dmapper/auth-lti demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 25 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.