I want to add data to the firebase local emulator using NODEJS. and how can I do it? I want to change the below code to a local emulator
const admin = require("firebase-admin");
const serviceAccount = require("./serviceAccountKey.json");
admin.initializeApp({
credential: admin.credential.cert(serviceAccount),
});
const db = admin.firestore();