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

@twec/netsuite-upload-utils

v1.1.0

Published

Set of utilities to easy file management and uploads to netsuite

Downloads

5

Readme

netsuite-upload-utils

This is a set of utilities used to create deployments of scripts to netsuite.

Instalation

This script and be installed globally or locally in the project

Global instalation

npm i -g netsuite-upload-utils

Local instalation

yarn add --dev netsuite-upload-utils

or

npm i -D netsuite-upload-utils

netsuite-create-manifest

Create a file manifest.json (by default) that stores all the files in a folder and their respective digests.

e.g.:

netsuite-create-manifest --root ./build --output build/manifest.json build/*.js

ℹ Calculated files hash:

d44c0505657d37aeace32a8dd2f7588e2b3b813d1ec1382e20e4742a8f4b9aa0 sendItemCancelEmails.js
d0d73d4cc0ccdd2d6aa981922ff95d50019476a618e7ec59763cbc81ac689011 sendOrderShipEmails.js
1d92f1104dd3791c9a0f73909701fe5f8b0c80dcc36001438d8b4cde9869c7c5 sovosFixTaxMismatches.js

ℹ Calculated all files hash:

f10c927a564fef19ee2b2079a6a3e721afc040d1c5bc51906552452bb5351a2a

✔ Wrote file build/manifest.json
✨  Done in 0.34s.

netsuite-upload-atomic

** Note **: Read more about how to store the netsuite credentials.

Using the manifest.json created by netsuite-create-manifest figure out the minimum amount of necessary changes to deploy the build described in the given manifest to netsuite.

The steps done by the script are:

  1. Load local manifest file
  2. Load remote manifest file

2.1. If no remote manifest file, create an empty manifest, and use it. 3. Compute the differences between manifests

3.1. Files that exist in local manifest but not in the remote manifest are considered "Added" 3.2. Files that exist in the remote manifest but not in the local manifest are considered "Removed" 3.3. Files that exist in both manifests:

3.3.1. If their digest is the same, do nothing
3.3.2. If their digest is different, then the files are considered "Changed"
  1. For all files considered "Added" and "Changed" uploaded them to NetSuite
  2. For all files considered "Removed" delete them from NetSuite

Each manifest also has a global digest value, this value is compared right at the beginning, and if they are the same, then nothing is done.

A full example of a new deploy would look like:

$ netsuite-upload-atomic -v -m build/manifest.json
⚠ Could not find 'file' SuiteBundles/Bundle 204240/FYE-tests/manifest.json in File Cabinet
ℹ Proceeding with an empty manifest
ℹ Deployment plan:
┌─────────────────────────────────────────┬─────────┬──────────────┐
│ Upload Files                            │ Reason  │ Delete Files │
├─────────────────────────────────────────┼─────────┼──────────────┤
│ sendItemCancelEmails.js                 │ added   │              │
├─────────────────────────────────────────┼─────────┼──────────────┤
│ sendOrderShipEmails.js                  │ added   │              │
├─────────────────────────────────────────┼─────────┼──────────────┤
│ sovosFixTaxMismatches.js                │ added   │              │
├─────────────────────────────────────────┼─────────┼──────────────┤
│ manifest.json                           │ changed │              │
└─────────────────────────────────────────┴─────────┴──────────────┘
ℹ Uploading /Users/couto/Development/FYE/FYE-Replatform-NetSuite/build/manifest.json
ℹ Uploading /Users/couto/Development/FYE/FYE-Replatform-NetSuite/build/sovosFixTaxMismatches.js
ℹ Uploading /Users/couto/Development/FYE/FYE-Replatform-NetSuite/build/sendOrderShipEmails.js
ℹ Uploading /Users/couto/Development/FYE/FYE-Replatform-NetSuite/build/sendItemCancelEmails.js
✔ Uploaded: SuiteBundles/Bundle 204240/FYE-tests/manifest.json
✔ Uploaded: SuiteBundles/Bundle 204240/FYE-tests/sovosFixTaxMismatches.js
✔ Uploaded: SuiteBundles/Bundle 204240/FYE-tests/sendOrderShipEmails.js
✔ Uploaded: SuiteBundles/Bundle 204240/FYE-tests/sendItemCancelEmails.js
✨  Done in 22.68s.

Following deploys would simply deploy changed files and remove any file that no longer exists in the local manifest.

e.g.:

$ netsuite-upload-atomic -v -m build/manifest.json
ℹ Deployment plan:
┌───────────────┬─────────┬──────────────────────────┐
│ Upload Files  │ Reason  │ Delete Files             │
├───────────────┼─────────┼──────────────────────────┤
│ manifest.json │ changed │ sendOrderShipEmails.js   │
├───────────────┼─────────┼──────────────────────────┤
│               │         │ sovosFixTaxMismatches.js │
└───────────────┴─────────┴──────────────────────────┘
ℹ Deleting /Users/couto/Development/FYE/FYE-Replatform-NetSuite/build/sendOrderShipEmails.js
ℹ Deleting /Users/couto/Development/FYE/FYE-Replatform-NetSuite/build/sovosFixTaxMismatches.js
ℹ Uploading /Users/couto/Development/FYE/FYE-Replatform-NetSuite/build/manifest.json
✔ Uploaded: SuiteBundles/Bundle 204240/FYE-tests/manifest.json
✔ Deleted: SuiteBundles/Bundle 204240/FYE-tests/sendOrderShipEmails.js
✔ Deleted: SuiteBundles/Bundle 204240/FYE-tests/sovosFixTaxMismatches.js
✨  Done in 26.69s.

NetSuite Credentials

Both the netsuite-upload and netsuite-upload-atomic require authorized credentials to be able to manipulate files in NetSuite.

Note: At the moment, only the Token Based method is supported.

These credentials can be passed in three forms:

  • CLI flags
  • Environment Variables
  • Configuration File

It's possible to mix and match options between any form, however you should be aware of the priorities: CLI flags > Environment variables > Configuration File

In other words,

  • CLI flags will always override other variables
  • Environament variable only override Configuration File's variables
  • Configuration Files don't override any variable.

CLI Flags

e.g.:

netsuite-upload-atomic \
  --accountId=111111 \
  --consumerKey=55b3831c22d16e409d0448a4bdecd28da50a4d1649005df70b7e898b80cfa784 \
  --consumerSecret=b071423e4b043a01cf2d59ba801b123919af54bc3fcad0989cceaa9011160e37 \
  --tokenId=a341a18b3218f29d8b61e2a69f03dc55d6db949521d2eeb8367e8d655812beee  \
  --tokenSecret=2c08d85f56215c721fa222b099d19bf1bd79336dcc02acfeea783f8d7521f655 \
  --manifest=build/manifest.json \
  --targetDirectory="SuiteBundles/Bundle 123/FYE/"

Environment Variables

All options are also available as environment variables.

Each option is available in the form of underscore_case with all words in uppercase form and prefixed with NETSUITE_.

e.g.:

export NETSUITE_ACCOUNT_ID=111111;
export NETSUITE_CONSUMER_KEY=55b3831c22d16e409d0448a4bdecd28da50a4d1649005df70b7e898b80cfa784;
export NETSUITE_CONSUMER_SECRET=b071423e4b043a01cf2d59ba801b123919af54bc3fcad0989cceaa9011160e37;
export NETSUITE_TOKEN_ID=a341a18b3218f29d8b61e2a69f03dc55d6db949521d2eeb8367e8d655812beee;
export NETSUITE_TOKEN_SECRET=2c08d85f56215c721fa222b099d19bf1bd79336dcc02acfeea783f8d7521f655;
export NETSUITE_TARGET_DIRECTORY="SuiteBundles/Bundle 123/FYE/"

netsuite-upload-atomic --manifest=build/manifest.json

Configuration files

Configuration files are JSON files that can be present in any folder between the root project's folder and the user's home folder.

They must have the name .netsuiterc.json

{
  "accountId":"111111"
  "consumerKey":"55b3831c22d16e409d0448a4bdecd28da50a4d1649005df70b7e898b80cfa784",
  "consumerSecret":"b071423e4b043a01cf2d59ba801b123919af54bc3fcad0989cceaa9011160e37",
  "tokenId":"a341a18b3218f29d8b61e2a69f03dc55d6db949521d2eeb8367e8d655812beee",
  "tokenSecret":"2c08d85f56215c721fa222b099d19bf1bd79336dcc02acfeea783f8d7521f655",
  "targetDirectory": "SuiteBundles/Bundle 123/FYE/"
}