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

xml-processor

v0.0.8

Published

XML processing toolkit

Downloads

18

Readme

xml-processor

xml-processor is a versatile npm package designed to parse XML data in various formats, including string, file, and Express request formats. It provides easy-to-use functions for processing XML data efficiently within your Node.js applications.

Installation

You can install xml-processor using npm:

npm install xml-processor

Usage

Parsing XML from a String

const xmlProcessor = require("xml-processor");

const xmlString = "<root><item>Hello</item><item>World</item></root>";

const xmlDocument = xmlProcessor.parseXMLString(xmlString);

Parsing XML from a File

const xmlProcessor = require("xml-processor");

const filePath = "path/to/xmlFile.xml";

xmlProcessor
  .parseFile(filePath)
  .then((xmlDocument) => {
    console.log(xmlDocument);
    // Process parsed XML data
  })
  .catch((error) => {
    console.error("Error:", error);
  });

Parsing XML from an Express Request

const express = require("express");
const xmlProcessor = require("xml-processor");

const app = express();

app.use(xmlProcessor.parseXMLReq());

app.post("/xml", (req, res) => {
  console.log(req.body);
  res.send("XML processed successfully");
});

app.listen(3000, () => {
  console.log("Server started on port 3000");
});

API

parseString(xmlString: string): XMLDocument

Parses XML data from a string and returns a JavaScript object representing the parsed data.

xmlString: The XML data as a string.

parseFile(filePath: string): Promise<XMLDocument>

Parses XML data from a file and returns a Promise that resolves to a JavaScript object representing the parsed data.

filePath: The path to the XML file.

xmlContentParser()

Parses XML data from an Express request object and returns a Promise that resolves to a JavaScript object representing the parsed data.

req: The Express request object containing the XML data.

Types & Objects

XMLDoc

The XMLDoc class represents an XML document in JavaScript or TypeScript. It provides functionality for creating, manipulating, and accessing nodes within an XML structure. This class encapsulates the root node of the XML document and allows users to interact with it by adding nodes, retrieving nodes, and accessing the root node. It serves as a convenient abstraction for working with XML data in a structured and organized manner.

Constructor

new XMLDocument(rootNode: XMLElement) Creates a new XMLDocument instance with the specified root node.

  • rootNode: The root node of the XML document.

Methods

getNode(tagName: string, nodeIndex: number): XMLElement | null Gets the node with the specified tag name and index.

  • tagName: The tag name of the node to retrieve.
  • nodeIndex: The index of the node within the tag name.

addNode(tagName: string, node: XMLElement): void Adds a node with the specified tag name and node.

  • tagName: The tag name of the node to add.
  • node: The node to add.

get rootNode(): XMLElement Gets the root node of the XML document.

XMLElement

The XMLElement class represents an individual element or node within an XML document. It provides functionality for creating, manipulating, and accessing attributes and content of XML elements. This class encapsulates various properties and methods for working with XML elements in a structured manner. It allows users to add, update, and remove attributes, as well as add child elements to the XML structure. Additionally, it offers methods for converting XML elements to string representations in different formats.

Constructor

  • new XMLElement(name: string, parent: XMLElement | null, type?: ElementType): Creates a new XML element with the specified name, parent element, and optional type.

Getters & Setters

  • set name: Setter for the name property of the XML element.
  • set content: Setter for the content property of the XML element.
  • set tagType: Setter for the type property of the XML element.
  • get name: string: Getter for the name property of the XML element.
  • get content: string | undefined: Getter for the content property of the XML element.
  • get childNodes: XMLElement[]: Retrieves the child XML elements.

Methods

  • getAttr(attrName: string): string | undefined: Retrieves the value of the specified attribute.
  • addAttr(attrName: string, attrValue: string, index?: number): void: Adds a new attribute to the XML element.
  • updateAttr(attrName: string, attrValue: string): void: Updates the value of an existing attribute.
  • removeAttr(attrName: string): void: Removes the specified attribute.
  • clearAttrs(): void: Clears all attributes of the XML element.
  • addChild(child: XMLElement, index?: number): void: Adds a child XML element to the current element.
  • getChild(index: number): XMLElement | undefined: Retrieves the child XML element at the specified index.
  • toString(type: StringFormat): string: Converts the XML element to a string representation in the specified format.

Usage

Contributing

Contributions are welcome! Please feel free to submit issues or pull requests on the GitHub repository.

License

xml-processor is licensed under the MIT License. See the LICENSE file for details.

Support

For support or inquiries, please contact [email protected].