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

aspose-barcode-cloud-node

v24.10.0

Published

Aspose.BarCode Cloud SDK for Node.js

Downloads

432

Readme

Aspose.BarCode Cloud SDK for Node.js

License Node.js CI npm

  • API version: 3.0
  • Package version: 24.10.0

Demo applications

Scan QR | Generate Barcode | Recognize Barcode :---: | :---: | :---: ScanQR | Generate | Recognize Generate Wi-Fi QR | Embed Barcode | Scan Barcode Wi-FiQR | Embed | Scan

Aspose.BarCode for Cloud is a REST API for Linear, 2D and postal barcode generation and recognition in the cloud. API recognizes and generates barcode images in a variety of formats. Barcode REST API allows to specify barcode image attributes like image width, height, border style and output image format in order to customize the generation process. Developers can also specify the barcode type and text attributes such as text location and font styles in order to suit the application requirements.

This repository contains Aspose.BarCode Cloud SDK for Node.js source code.

To use these SDKs, you will need Client Id and Client Secret which can be looked up at Aspose Cloud Dashboard (free registration in Aspose Cloud is required for this).

How to use the SDK

The complete source code is available in this repository folder. You can either directly use it in your project via source code or get nmpjs distribution (recommended).

Install Aspose.BarCode for Cloud via NPM

From the command line:

npm install aspose-barcode-cloud-node --save

Sample usage

The examples below show how your application have to generate QR code and save it on local storage:

const fs = require('fs');
const Barcode = require('aspose-barcode-cloud-node');

const config = new Barcode.Configuration(
    'Client Id from https://dashboard.aspose.cloud/applications',
    'Client Secret from https://dashboard.aspose.cloud/applications',
    null,
    process.env['TEST_CONFIGURATION_ACCESS_TOKEN']
);

async function generateBarcode(api) {
    const request = new Barcode.GetBarcodeGenerateRequest(
        Barcode.EncodeBarcodeType.QR,
        'Aspose.BarCode for Cloud Sample');
        request.textLocation = Barcode.CodeLocation.None;

    const oneBarcode = await api.getBarcodeGenerate(request);

    const fileName = 'QR.png'
    fs.writeFileSync(fileName, oneBarcode.body);

    return fileName;
}

async function scanBarcode(api, fileName) {
    const request = new Barcode.ScanBarcodeRequest(fs.readFileSync(fileName));
    request.decodeTypes = [Barcode.DecodeBarcodeType.QR];

    const result = await api.scanBarcode(request);

    return result.body.barcodes;
}

const api = new Barcode.BarcodeApi(config);

console.log('Generating barcode...');
generateBarcode(api)
    .then(fileName => {
        console.log('Barcode saved to ' + fileName);

        console.log('Trying to recognize barcode...');
        scanBarcode(api, fileName)
            .then(barcodes => {
                console.log('Recognized barcodes are:');
                console.log(JSON.stringify(barcodes, null, 2));
            });
    })
    .catch(err => {
        console.error(JSON.stringify(err, null, 2));
        process.exitCode = 1;
    });

Every method returns a chainable promise.

Licensing

All Aspose.BarCode for Cloud SDKs, helper scripts and templates are licensed under MIT License.

Resources

Documentation for API Endpoints

All URIs are relative to https://api.aspose.cloud/v3.0/

Class | Method | HTTP request | Description ----- | ------ | ------------ | ----------- BarcodeApi | getBarcodeGenerate | GET /barcode/generate | Generate barcode. BarcodeApi | getBarcodeRecognize | GET /barcode/{name}/recognize | Recognize barcode from a file on server. BarcodeApi | postBarcodeRecognizeFromUrlOrContent | POST /barcode/recognize | Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image with content-type "application/octet-stream". An image can also be passed as a form field. BarcodeApi | postGenerateMultiple | POST /barcode/generateMultiple | Generate multiple barcodes and return in response stream BarcodeApi | putBarcodeGenerateFile | PUT /barcode/{name}/generate | Generate barcode and save on server (from query params or from file with json or xml content) BarcodeApi | putBarcodeRecognizeFromBody | PUT /barcode/{name}/recognize | Recognition of a barcode from file on server with parameters in body. BarcodeApi | putGenerateMultiple | PUT /barcode/{name}/generateMultiple | Generate image with multiple barcodes and put new file on server BarcodeApi | scanBarcode | POST /barcode/scan | Quickly scan a barcode from an image. FileApi | copyFile | PUT /barcode/storage/file/copy/{srcPath} | Copy file FileApi | deleteFile | DELETE /barcode/storage/file/{path} | Delete file FileApi | downloadFile | GET /barcode/storage/file/{path} | Download file FileApi | moveFile | PUT /barcode/storage/file/move/{srcPath} | Move file FileApi | uploadFile | PUT /barcode/storage/file/{path} | Upload file FolderApi | copyFolder | PUT /barcode/storage/folder/copy/{srcPath} | Copy folder FolderApi | createFolder | PUT /barcode/storage/folder/{path} | Create the folder FolderApi | deleteFolder | DELETE /barcode/storage/folder/{path} | Delete folder FolderApi | getFilesList | GET /barcode/storage/folder/{path} | Get all files and folders within a folder FolderApi | moveFolder | PUT /barcode/storage/folder/move/{srcPath} | Move folder StorageApi | getDiscUsage | GET /barcode/storage/disc | Get disc usage StorageApi | getFileVersions | GET /barcode/storage/version/{path} | Get file versions StorageApi | objectExists | GET /barcode/storage/exist/{path} | Check if file or folder exists StorageApi | storageExists | GET /barcode/storage/{storageName}/exist | Check if storage exists