GithubHelp home page GithubHelp logo

joaojoyce / node-onix Goto Github PK

View Code? Open in Web Editor NEW

This project forked from christianroy/node-onix

0.0 0.0 0.0 63 KB

Node.JS library to parse/generate ONIX XML files

License: Apache License 2.0

JavaScript 100.00%

node-onix's Introduction

node-onix

NPM version Build Status

This library can be used to parse, or generate ONIX files from a list of books metadatas. It includes ONIX 2.1 and basic ONIX 3.0 support.

Installation

$ npm install onix

How to use it?

var onix = require("onix");

var xml = onix.create({
    from: {
        company: "GitBook",
        person: "Samy Pesse",
        email: "[email protected]"
    },
    suplier: {
        name: "ePubDirect",
        availabilityCode: "IP"
    },
    products: [
        {
            // Single record reference which will uniquely identify the product
            record: "gitbook.com-bookId",

            // Notification type
            notification: onix.codes.NOTIFICATION.ADVANCE,

            // ISBN or other id
            id: {
                type: onix.codes.PRODUCTID.ISBN13,
                value: '978123456789'
            },

            //
            title: "My Awesome Book",

            // Language code as ISO 639
            language: "eng",

            // List of prices (number or object) or unique "price"
            prices: [
                {
                    amount: 6,
                    currency: 'eur'
                },

                // Number will default to usd currency
                5
            ]
        }
    ]
});

You can also parse an ONIX feed:

var feed = onix.parse('...');

ONIX 3.0

Add the version number as a string parameter to create and parse:

var xml = onix.create({...}, '3.0');

and

var feed = onix.parse('...', '3.0');

Please note that 3.0 coverage is not complete.

node-onix's People

Contributors

christianroy avatar samypesse avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.