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

gasify

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gasify

Browserify Plugin for Google Apps Script

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

gasify NPM version Build Status Dependency Status Coverage percentage Greenkeeper badge

Browserify plugin for Google Apps Script.

About

In Google Apps Script, it must be top level function declaration that entry point called from google.script.run. When gasify detect a function assignment expression to global object. it generate a top level function declaration statement.

example

main.js:

var echo = require('./echo');
global.echo = echo;

echo.js:

module.exports = function(message) {
  return message;
}

build:

$ browserify main.js -p gasify -o Code.gs

Code.gs

var global = this;function echo() {
}(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
module.exports = function(message) {
  return message;
};

},{}],2:[function(require,module,exports){
(function (global){
var echo = require('./echo');
global.echo = echo;

}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{"./echo":1}]},{},[2]);

Installation

$ npm install gasify

Usage

CLI

$ browserify main.js -p gasify -o Code.gs

Options

The following options can be set via the API or command-line:

comment {Boolean}: If true then generate a top level function declaration statement with comment. Default is true.

Keywords

Google Apps Script

FAQs

Package last updated on 25 Jun 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts