A module to provide a simple key-value based database by Google Apps Script
- Go to https://script.google.com/home
- Create a script with content of db.js file and save with any project name you want
- Click "Publish" -> "Deploy as web app..."
- Set "Who has access to the app:" to "Anyone, even anonymous"
- Click "Deploy" and copy the URL
npm i --save apps-script-db
const ADB = require('apps-script-db')
const fetch = require('node-fetch')
const db = new ADB(YOUR_DATABASE_URL, fetch)
(async ()=>{
await db.set('key', {a: 5})
await db.get('key') //{a: 5}
})()
<script src="https://unpkg.com/apps-script-db"></script>
<script>
const db = new ADB(YOUR_DATABASE_URL)
</script>
URL: https://maple3142.github.io/apps-script-db/
The web app is on branch webui
, based on Vue.
Set the value of key
to value
Get the value of key
if
key === '*'
, it will return an object with all values
Delete the value of key
if
key === '*'
, it will delete everything