console library for Google Apps Script porting from Node.js v0.10.26.
In google apps script, this provides console.log() or other methods. And you can see output on the web.
-
Import GAS library 'console' into your gas project.
project key : MYBwh3izlQThbSz1-36mOjVJodnbMh4p7 project name : console
-
Open this URL in other browser window.
project url : https://script.google.com/macros/s/AKfycbzZaq3NPqMHYBno7ByxV-bpTbDt6EZ4M_5-kjYXXeQ9HI-k_w8/exec
-
Code and run to output to console.
or sample project is here.
-
Using this, google login required.
-
Where's my data?
This library uses cache services only your account context. Anyone else can see your data.
This project using Code.gs.
-
Go to gas-console project directory.
-
type
npm install
-
type
./build -o out.js
- More info, see code.gs
about fputs, see 'About Methods'.
-
type
npm install gas-console
-
code
require('gas-console');
then, added fputs
method into object console
.
Only one method added to original is:
console.fputs(str)
This method put string to stdout without '\n' at line end.
See original documentation here.