Skip to content

Instantly share code, notes, and snippets.

View neewy's full-sized avatar
🎯
Focusing

Nick Yushkevich neewy

🎯
Focusing
View GitHub Profile

Keybase proof

I hereby claim:

  • I am neewy on github.
  • I am neewy (https://keybase.io/neewy) on keybase.
  • I have a public key ASB0V2vhQbZshPEVHSf6JKAG95fVVq-3EuyevNQpBZQYuQo

To claim this, I am signing this object:

@neewy
neewy / function.js
Created December 6, 2024 19:01
QuickNode Function to stream data to a MongoDB instance
// =================================================================
// SETUP INSTRUCTIONS
// =================================================================
// 1. Start MongoDB locally using Docker:
// Quick start without auth:
// docker run -d --name mongodb -p 27017:27017 mongo:latest
//
// With authentication (recommended):
// docker run -d --name mongodb \
// -e MONGO_INITDB_ROOT_USERNAME=admin \