cli-xml-genx
v1.0.8
Published
Command-line tool to generate xml sitemaps files by passing in a json object.
Downloads
3
Maintainers
Readme
Command-line tool to generate sitemaps-xml file
Installation:
$ npm install cli-xml-genx
To run tool:
xml-genx --url <baseUrl> --jp <pathToJsonFile>
Command takes two parameters:
- base url
- json file path with list of urls
Tool produces a site-maps xml file with provided urls and dumps the file in the current working directory.
Example json structure:
{
"categories": {
"frequency": "monthly",
"priority": 1,
"urls": ["aaaa", "bbbb", "cccc"]
},
"editions": {
"frequency": "weekly",
"priority": 0.7,
"urls": ["ffff", "gggg", "dddd"]
},
"posts": {
"frequency": "weekly",
"priority": 0.5,
"urls": ["hhhhh", "eeeee", "ttttt"]
}
}