onix

1.0.3 • Public • Published

node-onix

NPM version Build Status

This library can be used to parse, or generate ONIX files from a list of books metadatas.

Installation

$ npm install onix

How to use it?

var onix = require("onix");
 
var xml = onix.create({
    from: {
        company: "GitBook",
        person: "Samy Pesse",
        email: "samy@gitbook.com"
    },
    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('...');

Readme

Keywords

none

Package Sidebar

Install

npm i onix

Weekly Downloads

0

Version

1.0.3

License

Apache-2.0

Last publish

Collaborators

  • samypesse