Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Node.js) Firebase JSON Put and PatchDemonstrates how to apply Firebase put and patch events to a JSON database.
var os = require('os'); if (os.platform() == 'win32') { if (os.arch() == 'ia32') { var chilkat = require('@chilkat/ck-node21-win-ia32'); } else { var chilkat = require('@chilkat/ck-node21-win64'); } } else if (os.platform() == 'linux') { if (os.arch() == 'arm') { var chilkat = require('@chilkat/ck-node21-arm'); } else if (os.arch() == 'x86') { var chilkat = require('@chilkat/ck-node21-linux32'); } else { var chilkat = require('@chilkat/ck-node21-linux64'); } } else if (os.platform() == 'darwin') { if (os.arch() == 'arm64') { var chilkat = require('@chilkat/ck-node21-mac-m1'); } else { var chilkat = require('@chilkat/ck-node21-macosx'); } } function chilkatExample() { var json1 = "{\"a\": 1, \"b\": 2}"; var json = new chilkat.JsonObject(); // Use Firebase delimiters for JSON paths. json.DelimiterChar = "/"; json.Load(json1); json.FirebasePut("/c","{\"foo\": true, \"bar\": false}"); // Output should be: {"a":1,"b":2,"c":{"foo":true,"bar":false}} console.log("1) " + json.Emit()); json.FirebasePut("/c","\"hello world\""); // Output should be: {"a":1,"b":2,"c":"hello world"} console.log("2) " + json.Emit()); json.FirebasePut("/c","{\"foo\": \"abc\", \"bar\": 123}"); // Output should be: {"a":1,"b":2,"c":{"foo":"abc","bar":123}} console.log("3) " + json.Emit()); // Back to the original.. json.FirebasePut("/","{\"a\": 1, \"b\": 2}"); console.log("4) " + json.Emit()); json.FirebasePut("/c","{\"foo\": true, \"bar\": false}"); json.FirebasePatch("/c","{\"foo\": 3, \"baz\": 4}"); // Output should be: {"a":1,"b":2,"c":{"foo":3,"bar":false,"baz":4}} console.log("5) " + json.Emit()); json.FirebasePatch("/c","{\"foo\": \"abc123\", \"baz\": {\"foo\": true, \"bar\": false}, \"bax\": {\"foo\": 200, \"bar\": 400} }"); // Output should be: {"a":1,"b":2,"c":{"foo":"abc123","bar":false,"baz":{"foo":true,"bar":false},"bax":{"foo":200,"bar":400}}} console.log("6) " + json.Emit()); } chilkatExample(); |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.