New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

gexode

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gexode - npm Package Compare versions

Comparing version
0.0.3
to
0.1.0
+15
-16
package.json
{
"name": "gexode",
"version": "0.1.0",
"description": "Primitive XML generator for node.js",
"main": "lib/index.js",
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "git@github.com:pirxpilot/gexode.git"
},
"keywords": [
"xml"
],
"version": "0.0.3",
"author": "Damian Krzeminski <pirxpilot@code42day.org>",
"engines": {
"node": ">=0.2.0"
"author": "Damian Krzeminski <pirxpilot@code42day.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pirxpilot/gexode/issues"
},
"main": "lib/index.js",
"repository": [
{
"type": "git",
"url": "http://github.com/pirxpilot/gexode.git"
}
],
"devDependencies": {
"expresso": "*",
"jshint": "~2"
},
"scripts": {
"test": "make test"
"jshint": "~2",
"mocha": "~1"
}
}

@@ -1,16 +0,26 @@

gexode
============
[![Build Status](https://secure.travis-ci.org/pirxpilot/gexode.png)](http://travis-ci.org/pirxpilot/gexode)
[![NPM version](https://badge.fury.io/js/gexode.png)](http://badge.fury.io/js/gexode)
# gexode
Primitive XML generator for node.js
Example:
## Example
var gexode = require(gexode), doc = gexode.doc, elem = gexode.elem;
```javascript
var gexode = require(gexode), doc = gexode.doc, elem = gexode.elem;
var car = doc(elem('car', {wheels: 4}).text('Volvo'));
car.write(out);
var car = doc(elem('car', {wheels: 4}).text('Volvo'));
car.write(out);
```
renders as:
<?xml version='1.0' encoding='UTF-8'?>
<car wheels='4'>Volvo</car>
```
<?xml version='1.0' encoding='UTF-8'?>
<car wheels='4'>Volvo</car>
```
## License
MIT

Sorry, the diff of this file is not supported yet