This package has been deprecated

Author message:

this version has been deprecated

ios-xliff-parser

1.0.1 • Public • Published

ios-xliff-parser

![Gitter](https://badges.gitter.im/Join Chat.svg)

Dependencies

  • async : Higher-order functions and common patterns for asynchronous code.
  • jsonschema : A fast and easy to use JSON schema validator.
  • libxmljs : Libxml bindings for v8 javascript engine.
  • mustache : Logic-less {{mustache}} templates with JavaScript.
  • xml2js : Simple XML to JavaScript object converter.

Installation

$ npm install [--save] ios-xliff-parser

Usage

var iOSXliffParser = require("ios-xliff-parser");

iOSXliffParser.parse(filePath, function (err, json) {
    if (err) {
        console.log(err);
        process.exit(1);
    }

    console.log(json);

    iOSXliffParser.export(json, function (err, xliff) {
        if (err) {
            console.log(err);
            process.exit(1);
        }

        console.log(xliff);
    });
});

Readme

Keywords

none

Package Sidebar

Install

npm i ios-xliff-parser

Weekly Downloads

1

Version

1.0.1

License

MIT

Last publish

Collaborators

  • linitix