
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
Functional library for interacting, via server-to-server communications, with Learning Tools Interoperability (LTI) tool providers.
#lti.js
Functional library for interacting, via server-to-server communications, with Learning Tools Interoperability (LTI) tool providers. The project makes heavy use of bilby.js and Q. You will likely need a familiarity with basic functional programming concepts and promises to be successful.
The project is available on the Node Packaged Modules registry. Add the dependency in your package.json file:
"dependencies": {
"lti": "0.3.x"
}
npm install
grunt
CoffeeScript:
# Setup the tool context (hence the name).
context = lti.ToolContext
.property('consumerKey', 'consumerKey')
.property('consumerSecret', 'consumerSecret')
.property('host', 'example.com')
.property('path', '/lti')
context.withSession((consumer) ->
# Simple one-off request, we could also make a large array of promises and asynchronously
# execute all of them. Check out: https://github.com/kriskowal/q/wiki/API-Reference#promiseall
consumer.request(lti.ToolParameters.property('resource_link_id', '1234567890'))
.then((response) -> response.map((r) -> console.dir(r)))
.catch((error) -> console.log(error))
.done(-> console.log('All done!'))
)
More usage examples available via the project unit tests.
The MIT License (MIT)
Copyright (c) 2013 Rocky Madden (http://rockymadden.com/)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
FAQs
Learning Tools Interoperability node.js library.
The npm package lti receives a total of 33 weekly downloads. As such, lti popularity was classified as not popular.
We found that lti 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.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.