
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Browserify plugin for Google Apps Script.
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.
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]);
$ npm install gasify
$ browserify main.js -p gasify -o Code.gs
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.
FAQs
Browserify Plugin for Google Apps Script
We found that gasify demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.