Skip to content

Instantly share code, notes, and snippets.

View peteradeojo's full-sized avatar
👋
Available for collaboration

Peter Ade-Ojo peteradeojo

👋
Available for collaboration
View GitHub Profile
@peteradeojo
peteradeojo / goodlinks.md
Last active February 19, 2025 10:01
Quick Links for Developers
@peteradeojo
peteradeojo / vercel.json
Created October 28, 2024 10:19
vercel.json
{
"rewrites": [
{
"source": "/(.*)",
"destination": "/index.html"
}
]
}
@peteradeojo
peteradeojo / model.ts
Created April 25, 2024 21:04
Create API-safe responses with mongoose toJSON()
// model.ts
import mongoose, { Schema } from 'mongoose';
const schema = new Schema({
//...schema definition
});
schema.methods.toJSON = function() {
// ... compute some data to go along with your response