npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@titanium/scandit

v5.17.43

Published

⭐ Axway Amplify module using Scandit SDK Barcode Scanner with Appcelerator Titanium SDK

Downloads

63

Readme

👉    A group of Axway employees, ex-Axway employees, and some developers from Titanium community have created a legal org and now officially decide all matters related to future of these products.

API FAQ:

 

Click to watch on Youtube

  ↑ Watch video on YouTube ↑

 

@titanium/scandit

@titanium/scandit Dependabot Status

Scandit SDK Barcode Scanner Module for Titanium Native Mobile Apps

📝 Description

This is a repackaging of the compiled iOS and Android modules for the Scandit SDK for Titanium to allow for installation via npm.

🚀 Getting Started

  1. Install @titanium/scandit in root of project
npm install @titanium/scandit

Obtain SDK API Key

You need to log into your Scandit Account (or create a new account) to obtain your Scandit API Key to use with this module.

https://ssl.scandit.com/account/sdk

Using barcode scanner

const scanditsdk = require('@titanium/scandit');
scanditsdk.appKey = 'YOUR_SCANDIT_API_KEY';

// Only after setting the app key, instantiate the Scandit SDK Barcode Picker view
scanner = scanditsdk.createView({
	top:    0,
	width:  Ti.UI.FILL,
	height: Ti.UI.FILL,
});

// Before calling any other functions on the picker you have to call init()
scanner.init();

/*************************
 * Set various features
 ************************/

scanner.showSearchBar(false);
scanner.setVibrateEnabled(true);
scanner.setBeepEnabled(true);
scanner.setTorchEnabled(true);

// add a tool bar at the bottom of the scan view with a cancel button (iphone/ipad only)
scanner.showToolBar(false);
scanner.setViewfinderSize(0.7, 0.7, 0.6, 0.4);

// Shows/hides viewfinder rectangle and highlighted barcode location in the scan screen UI. [default is true]
scanner.drawViewfinder(true);
// scanner.setViewfinderColor( red, green, blue ); // enterprise-only fea
// setViewfinderDecodedColor( red, green, blue);

// Reduces the area in which barcodes are detected and decoded.
// Must be used in combination with setScanningHotSpot
// If this method is not enabled, barcodes in the full camera preview are detected and decoded.
scanner.restrictActiveScanningArea(true);

	// Changes the location of the spot where the barcode decoder actively scans for barcodes.
// X and Y can be between 0 and 1, where 0/0 corresponds to the top left corner and 1/1 to the bottom right corner.
// The default hotspot is set to 0.5/0.5
scanner.setScanningHotSpot(0.5, 0.5);

// Forces the barcode scanner to always run the 2D decoders (QR,Datamatrix, etc.),
// even when the 2D detector did not detect the presence of a 2D code.
// This slows down the overall scanning speed, but can be useful when your application only tries to read QR codes
scanner.force2dRecognition(false);
scanner.setEan13AndUpc12Enabled(true);
scanner.setEan8Enabled(true);
scanner.set1DScanningEnabled(true);
scanner.setUpceEnabled(true);
scanner.setCode39Enabled(true);
scanner.setCode128Enabled(true);
scanner.setQrEnabled(true);
scanner.set2DScanningEnabled(true);
scanner.setDataMatrixEnabled(true); // enterprise-only feature
scanner.setMaxiCodeEnabled(true); // enterprise-only feature
scanner.setItfEnabled(true); // enterprise-only feature
scanner.setCode25Enabled(true); // enterprise-only feature
scanner.setGS1DataBarLimitedEnabled(true); // enterprise-only feature
scanner.setGS1DataBarExpandedEnabled(true); // enterprise-only feature
scanner.setGS1DataBarEnabled(true); // enterprise-only feature
scanner.setPdf417Enabled(true); // enterprise-only feature
scanner.setRM4SCCEnabled(true); // enterprise-only feature
scanner.setKIXEnabled(true); // enterprise-only
scanner.setMicroPdf417Enabled(true); // enterprise-only
scanner.setCode128Enabled(true); // enterprise-only
scanner.setCode11Enabled(true); // enterprise-only
scanner.setCode93Enabled(true); // enterprise-only
scanner.setCode39Enabled(true); // enterprise-only

// Set callback functions for when scanning succeeds and for when the
// scanning is canceled. This callback is called on the scan engine's
// thread to allow you to synchronously call stopScanning or
// pauseScanning. Any UI specific calls from within this function
// have to be issued through setTimeout to switch to the UI thread
// first.
scanner.setSuccessCallback(e => {
	console.error('scanner.openScanner.setSuccessCallback: entering');
	scanner.stopScanning();

	const upcNumber = e.barcode;
	const upcType = e.symbology;

}

✨Features

iOS: com.mirasense.scanditsdk 5.13.1 Android: com.mirasense.scanditsdk 5.13.1

📚Learn More

📣 Feedback

Have an idea or a comment? Join in the conversation here!

©️ Legal

Modules licensed by Scandit AG
Copyright (c) 2018 by Scandit AG

Usage of this module is subject to the Terms of the Service Agreement with Scandit AG (available at http://www.scandit.com/pricing) as well as your Terms of Service agreement with Appcelerator, Inc.

Alloy is developed by Appcelerator and the community and is Copyright © 2012-Present by Appcelerator, Inc. All Rights Reserved.

Alloy is made available under the Apache Public License, version 2. See their license file for more information.

Appcelerator is a registered trademark of Appcelerator, Inc. Titanium is a registered trademark of Appcelerator, Inc. Please see the LEGAL information about using trademarks, privacy policy, terms of usage and other legal information at http://www.appcelerator.com/legal.