Marketplace móvil para negocios locales mexicanos. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React Web) - apps/mobile (Expo/React Native) - apps/mcp-server (Claude MCP Server) - apps/whatsapp-service (WhatsApp Business API) - database/ (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| docs/api | ||
| lib | ||
| LICENSE | ||
| package.json | ||
| README.md | ||
fs-monkey
Monkey-patches for filesystem related things.
- Rewrite
requirefunction to load Node's modules from memory. - Or rewrite the whole
fsfilesystem module.
Install
npm install --save fs-monkey
Terms
An fs-like object is an object that implements methods of Node's
filesystem API.
It is denoted as vol:
let vol = {
readFile: () => { /* ... */ },
readFileSync: () => { /* ... */ },
// etc...
}
Reference
patchFs- rewrites Node's filesystem modulefswith fs-like objectvolpatchRequire- rewritesrequirefunction, patches Node'smodulemodule to use a given fs-like object for module loading
License
Unlicense - public domain.