New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@barn/zxing

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@barn/zxing - npm Package Compare versions

Comparing version 0.2.1 to 0.2.2

barn-zxing-0.2.2.tgz

6

esm5/index.d.ts

@@ -35,3 +35,9 @@ export { default as BrowserCodeReader } from './browser/BrowserCodeReader';

export { default as StringUtils } from './core/common/StringUtils';
export { default as MathUtils } from './core/common/detector/MathUtils';
export { default as WhiteRectangleDetector } from './core/common/detector/WhiteRectangleDetector';
export { default as GenericGF } from './core/common/reedsolomon/GenericGF';
export { default as GenericGFPoly } from './core/common/reedsolomon/GenericGFPoly';
export { default as ReedSolomonDecoder } from './core/common/reedsolomon/ReedSolomonDecoder';
export { default as ReedSolomonEncoder } from './core/common/reedsolomon/ReedSolomonEncoder';
export { default as QRCodeReader } from './core/qrcode/QRCodeReader';
export { default as QRCodeWriter } from './core/qrcode/QRCodeWriter';

@@ -64,2 +64,17 @@ "use strict";

exports.StringUtils = StringUtils_1.default;
// core/common/detector
var MathUtils_1 = require("./core/common/detector/MathUtils");
exports.MathUtils = MathUtils_1.default;
// export { default as MonochromeRectangleDetector } from './core/common/detector/MonochromeRectangleDetector';
var WhiteRectangleDetector_1 = require("./core/common/detector/WhiteRectangleDetector");
exports.WhiteRectangleDetector = WhiteRectangleDetector_1.default;
// core/common/reedsolomon
var GenericGF_1 = require("./core/common/reedsolomon/GenericGF");
exports.GenericGF = GenericGF_1.default;
var GenericGFPoly_1 = require("./core/common/reedsolomon/GenericGFPoly");
exports.GenericGFPoly = GenericGFPoly_1.default;
var ReedSolomonDecoder_1 = require("./core/common/reedsolomon/ReedSolomonDecoder");
exports.ReedSolomonDecoder = ReedSolomonDecoder_1.default;
var ReedSolomonEncoder_1 = require("./core/common/reedsolomon/ReedSolomonEncoder");
exports.ReedSolomonEncoder = ReedSolomonEncoder_1.default;
// core/qrcode

@@ -66,0 +81,0 @@ var QRCodeReader_1 = require("./core/qrcode/QRCodeReader");

12

package.json
{
"name": "@barn/zxing",
"version": "0.2.1",
"description": "TypeScript port of ZXing open-source, multi-format 1D/2D barcode image processing library.",
"version": "0.2.2",
"description": "TypeScript port of ZXing multi-format 1D/2D barcode image processing library.",
"keywords": [
"barcode-scanner",
"barcode-reader",
"barcode-generator",
"scanner",
"reader",
"generator",
"barcode",

@@ -68,3 +68,3 @@ "qr-code",

"tslint": "^5.5.0",
"typescript": "^2.4.2",
"typescript": "^2.6.2",
"uglify-js": "git://github.com/mishoo/UglifyJS2#harmony-v2.8.22",

@@ -71,0 +71,0 @@ "uglifyjs-webpack-plugin": "^0.4.6",

@@ -1,22 +0,26 @@

ZXing TypeScript
[<img align="right" src="https://raw.github.com/wiki/zxing/zxing/zxing-logo.png"/>](https://github.com/zxing/zxing)
ZXing _in TypeScript_ [![License](https://img.shields.io/npm/l/qoopido.demand.svg?style=flat-square)](https://github.com/odahcam/zxing-ts) [![GitHub release](https://img.shields.io/github/release/odahcam/zxing-ts.svg?style=flat-square)](https://github.com/odahcam/zxing-ts)
================
[![Build Status](https://travis-ci.org/odahcam/zxing-ts.svg?branch=master)](https://travis-ci.org/odahcam/zxing-ts)
ZXing _(Zebra Crossing)_ is an multi-format 1D/2D barcode image processing library.
ZXing ("zebra crossing") TypeScript is an open-source, multi-format 1D/2D barcode image processing library ported to TypeScript from Java.
Ported from [ZXing](https://github.com/zxing/zxing) project (written in Java): https://github.com/zxing/zxing
See https://github.com/zxing/zxing for original Java project.
[![Build Status](https://travis-ci.org/odahcam/zxing-ts.svg?branch=master)](https://travis-ci.org/odahcam/zxing-ts)
[![NPM version](https://img.shields.io/npm/v/@barn/zxing.svg?&label=npm)](https://www.npmjs.com/package/@barn/zxing)
![NPM downloads](https://img.shields.io/npm/dt/@barn/zxing.svg?&label=npm%20downloads)
![Dependencies](https://david-dm.org/odahcam/zxing-ts.svg)
[![Bless](https://cdn.rawgit.com/LunaGao/BlessYourCodeTag/master/tags/alpaca.svg)](http://lunagao.github.io/BlessYourCodeTag/)
Difference from base-repo
=========================
[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/odahcam/zxing-ts.svg)](http://isitmaintained.com/project/odahcam/zxing-ts "Average time to resolve an issue")
[![Percentage of issues still open](http://isitmaintained.com/badge/open/odahcam/zxing-ts.svg)](http://isitmaintained.com/project/odahcam/zxing-ts "Percentage of issues still open")
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/f7a8692eca4147e983abfc0d8291cf84)](https://www.codacy.com/app/odahcam/zxing-ts?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=odahcam/zxing-ts&amp;utm_campaign=Badge_Grade)
[![Maintainability](https://api.codeclimate.com/v1/badges/181de5153c3535321974/maintainability)](https://codeclimate.com/github/odahcam/zxing-ts/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/181de5153c3535321974/test_coverage)](https://codeclimate.com/github/odahcam/zxing-ts/test_coverage)
- Fixed all `tslint` errors.
- Created build with ES5 and Universal Module definition.
- Compatibility with anguar and other frameworks.
- Applyied some best practices and organization.
Work In Progress
================
This project is work in progress, see [Status and Roadmap](#status-and-roadmap) for what is currently done and what's planned next.
There's still some things we gotta do here, see [Status and Roadmap](#status-and-roadmap) for what is currently done and what's planned next.

@@ -258,2 +262,3 @@ Demo

Todo:
- [ ] Move all these tasks to a "Project".
- [ ] Port pdf417 format with unit and browser tests and documentation

@@ -260,0 +265,0 @@ - [ ] Adapt documentation for JSDoc, generate documentation, cleanup source files

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc