ns-schema-scraper

Netsuite record schema scraper. JSON output

Usage no npm install needed!

<script type="module">
  import nsSchemaScraper from 'https://cdn.skypack.dev/ns-schema-scraper';
</script>

README

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"
      },

      ...

    ]
  }
]