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

cxml-util-rc

v1.0.0

Published

cxml conversion libraly

Downloads

9

Readme

Convert XML text to Javascript object / JSON text.

English:

Function for Converting cXML/XML file to JSON object.

  • FormatCXML(value) : Function responsible for converting data into cXml/XML.

Features

  • Maintain Order of Elements: Most libraries will convert <a/><b/><a/> to {a:[{},{}],b:{}} which merges any node of same name into an array. This library can create the following to preserve the order of elements: {"elements":[{"type":"element","name":"a"},{"type":"element","name":"b"},{"type":"element","name":"a"}]}.
  • Fully XML Compliant: Can parse: elements, attributes, texts, comments, CData, DOCTYPE, XML declarations, and Processing Instructions.
  • Minimal Dependencies: This library depends only on one external npm module.
  • Portable Code: Written purely in JavaScript which means it can be used in Node environment and browser environment (via bundlers like browserify/JSPM/Webpack).

Usage

npm install --save cxml-util-rc

Quick start

Use in javascript

var {formatCXML} = require('cxml-util-rc');


var cXml = "&lt;cProd&gt; testeando &lt;/cProd&gt;";
var result  = formatCXML(cXml);
console.log(result);

Use in React

import {formatCXML} from "cxml-util-rc";


var cXml = "&lt;cProd&gt; testeando &lt;/cProd&gt;";
var result  = formatCXML(cXml);
console.log(result);

dependency

  • This library uses the xml-js dependency, all credits and rights of its dependency are reserved to it. "XML-js"

Português:

Função para converter arquivo cXML/XML em objeto JSON.

  • FormatCXML(valor): Função responsável por converter os dados em cXml/XML

Features

  • Mantenha a Ordem dos Elementos: A maioria das bibliotecas converterá para a qual mescla qualquer nó de mesmo nome em uma matriz. Esta biblioteca pode criar o seguinte para preservar a ordem dos elementos: <a/><b/><a/>{a:[{},{}],b:{}}{"elements":[{"type":"element","name":"a"},{"type":"element","name":"b"},{"type":"element","name":"a"}]}
  • Totalmente compatível com XML: pode analisar: elementos, atributos, textos, comentários, CData, DOCTYPE, declarações XML e instruções de processamento.
  • Dependências mínimas: Esta biblioteca depende apenas de um módulo npm externo.
  • Código Portátil: Escrito puramente em JavaScript, o que significa que pode ser usado no ambiente Node e no ambiente do navegador (através de bundlers como browserify/JSPM/Webpack).

Uso

npm install --save cxml-util-rc

Inicialização

Começando no JavaScript

var {formatCXML} = require('cxml-util-rc');


var cXml = "&lt;cProd&gt; testeando &lt;/cProd&gt;";
var result  = formatCXML(cXml);
console.log(result);

Começando no React

import {formatCXML} from "cxml-util-rc";


var cXml = "&lt;cProd&gt; testeando &lt;/cProd&gt;";
var result  = formatCXML(cXml);
console.log(result);

dependência

  • Esta biblioteca utiliza a dependência xml-js, todos os créditos e direitos de sua dependência são reservados a ela. "XML-js"