Security News
npm Updates Search Experience with New Objective Sorting Options
npm has a revamped search experience with new, more transparent sorting options—Relevance, Downloads, Dependents, and Publish Date.
scandit-flow-ng
Advanced tools
The library is a wrapper over the Scandit Flow JavaScript SDK in order to provide a simple and convenient AngularJS module to integrate Angular applications with the Scandit Flow platform.
To get started, take a look at the Getting started section of the Scandit Flow JavaScript SDK.
Using npm (for NodeJS):
$ npm install scandit-flow-ng
Using bower:
$ bower install scandit-flow-ng
Manually (downloaded from Releases):
<script src="angular-scandit.min.js"></script>
Provide your desired configuration into $scanditProvider
(see more: client configuration).
angular.module('app', ['scandit.flow'])
.config(function($scanditProvider) {
$scanditProvider.configure({
method: Scandit.Auth.Method.STATIC_KEY,
key: 'cfYYYf975f1ZZZZa5555eea3e7XXX87'
});
// ...
})
The library is automatically instantiated at application start-up. If using STATIC_KEY
authentication method, at this moment your application is ready to use. Access the Db
module to retrieve objects from the Scandit Flow Cloud DB (see more: accessing cloud storage).
app.controller('ProductListController', function($scope, $scandit) {
$scandit.ready(function() {
$scandit.Db['Product'].all().then(function(objects) {
$scope.$apply(function() {
$scope.objects = objects;
});
});
});
});
For more detailed examples please take a look at the examples
folder.
API documentation will be available soon. For general documentation please refer to Scandit Flow - Documentation. (You need to log in with an already existing account to access the documentation)
The source code published here is released under the Apache 2.0 license: http://www.apache.org/licenses/LICENSE-2.0.
Questions? Contact support@scandit.com
.
FAQs
Angular module for Scandit Flow WEB SDK
The npm package scandit-flow-ng receives a total of 0 weekly downloads. As such, scandit-flow-ng popularity was classified as not popular.
We found that scandit-flow-ng 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.
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
npm has a revamped search experience with new, more transparent sorting options—Relevance, Downloads, Dependents, and Publish Date.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.