zabaat / ns-schema-scraper

scrapes the records at netsuite schema browser and returns JSON

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ns-record-scraper

scrapes the records at netsuite schema browser and returns JSON

npm install zabaat-ns-scrape

"use strict";
var scrape = require('zabaat-ns-scrape')

scrape.nsScrape((err,data)=>{
	console.log("back",data)
})

example output

[
  {
    "name": "serviceitem",
    "fields": [
      {
        "id": "accountingbook",
        "type": "select",
        "desc": "Accounting Book"
      },
      {
        "id": "accountingbookamortization",
        "type": "select",
        "desc": "Accounting Book Amortization Schedule"
      },

      ...

  	]
  }
]

About

scrapes the records at netsuite schema browser and returns JSON

License:MIT License


Languages

Language:JavaScript 100.0%