Quick Start
1. Install
# core + HTTP + MongoDB
npm install @soapjs/soap @soapjs/soap-express @soapjs/soap-node-mongo reflect-metadata express
# optional: auth
npm install @soapjs/soap-auth bcryptjs2. Enable decorators
{
"compilerOptions": {
"target": "ES2021",
"module": "commonjs",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true
}
}3. A minimal app
4. Follow the pattern
Next steps
Last updated