
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
lambdaorm-cli
Advanced tools
λORM CLI is a command line application to use λORM
Install the package globally to use the CLI commands to help you create and maintain projects
npm install lambdaorm-cli -g
| Command | Description |
|---|---|
| version | Prints lambdaorm version this project uses. |
| init | Generates lambdaorm project structure. |
| push | Synchronize sources with schema |
| pull | Synchronize schema whit sources |
| fetch | Show differences the schema whit sources |
| introspect | Update schema with structure of data and push |
| incorporate | Update schema with structure of data, push and importa data |
| execute | Execute an expression lambda. |
| metadata | Return metadata of query expression. |
| parameters | Return parameters of query expression. |
| model | Return model of query expression. |
| plan | Return plan execution of query expression. |
| schema | Return schema information. |
| import | Import data from file to database. |
| export | Export data from a database. |
| build | add configuration, model and repositories according to the language. |
| drop | Removes all database objects but not the database. |
Prints lambdaorm version this project uses.
lambdaorm version
Result:
Global lambdaorm cli version: 0.9.21
Local lambdaorm version: 0.8.96
will create the project folder with the basic structure.
lambdaorm init -w lab
It will generate:
├── orm_state
└── lambdaORM.yaml
will create the project folder with the basic structure.
lambdaorm init -w client-lab -u http://localhost:9291
It will generate:
├── orm_state
└── lambdaORM.yaml
Synchronize Stage configured in lambdaORM schema with database/s.
lambdaorm push
In the case the default stage is associated with several data sources, it generates a file for each data source and a file with the current model.
data
├── default-ddl-20231201T191054280Z-push-Catalog.sql
├── default-ddl-20231201T191054280Z-push-Crm.sql
├── default-ddl-20231201T191054281Z-push-Ordering.json
├── default-model.json
Execute an expression lambda.
lambdaorm execute -e .env -q "Orders.filter(p => p.customerId == customerId).include(p => [p.customer.map(p => p.name), p.details.include(p => p.product.include(p => p.category.map(p => p.name)).map(p => p.name)).map(p => [p.quantity, p.unitPrice])]).page(1,1)" -d "{\"customerId\": \"HANAR\"}"
Result:
[
{
"id": 3,
"customerId": "HANAR",
"employeeId": 4,
"orderDate": "1996-07-08T00:00:00.000+02:00",
"requiredDate": "1996-08-05",
"shippedDate": "1996-07-12",
"shipViaId": 2,
"freight": 65.83,
"name": "Hanari Carnes",
"address": "Rua do Pao, 67",
"city": "Rio de Janeiro",
"region": "RJ",
"postalCode": "05454-876",
"country": "Brazil",
"details": [
{
"quantity": 10,
"unitPrice": 7.7,
"product": {
"name": "Jack's New England Clam Chowder",
"category": {
"name": "Seafood"
}
}
},
{
"quantity": 35,
"unitPrice": 42.4,
"product": {
"name": "Manjimup Dried Apples",
"category": {
"name": "Produce"
}
}
},
{
"quantity": 15,
"unitPrice": 16.8,
"product": {
"name": "Louisiana Fiery Hot Pepper Sauce",
"category": {
"name": "Condiments"
}
}
}
],
"customer": {
"name": "Hanari Carnes"
}
}
]
In this example:
Return plan execution of query expression.
lambdaorm plan -e .env -s default -q "Orders.filter(p => p.customerId == customerId).include(p => p.customer.map(p => p.name)).order(p=> p.id).page(1,1)" -o beautiful
Result:
{
"entity": "Orders",
"dialect": "MongoDB",
"source": "Ordering",
"sentence": "[{ \"$match\" : { \"CustomerID\":{{customerId}} } }, { \"$project\" :{ \"_id\": 0 , \"id\":\"$_id\", \"customerId\":\"$CustomerID\", \"orderDate\":\"$OrderDate\", \"__customerId\":\"$CustomerID\" }} , { \"$sort\" :{ \"_id\":1 } } , { \"$skip\" : 0 }, { \"$limit\" : 1 } , { \"$project\": { \"_id\": 0 } }]",
"children": [
{
"entity": "Customers",
"dialect": "PostgreSQL",
"source": "Crm",
"sentence": "SELECT c.CompanyName AS \"name\", c.CustomerID AS \"LambdaOrmParentId\" FROM Customers c WHERE c.CustomerID IN ($1) "
}
]
}
In this example:
Import data from file to datasources asociados a un stage.
```sh
lambdaorm import -e .env -s default -d ./data.json
In this example:
Export data from a datasource associated to a stage.
lambdaorm export -s stage1 -e .env
In this example:
Running the build command will create or update the following:
Add configuration, model and repositories according to the language.
lambdaorm build -l node
Result:
├── orm_state
├── lambdaORM.yaml
├── package.json
├── src
│ └── countries
│ └── domain
│ ├── model.ts
│ ├── repositoryCountry.ts
│ └── repositoryState.ts
└── tsconfig.json
lambdaorm build -l client-node --all -u http://localhost:9291
Result:
├── orm_state
├── lambdaORM.yaml
├── package.json
├── src
│ ├── index.ts
│ └── northwind
│ └── domain
│ ├── model.ts
│ ├── repositoryCategory.ts
│ ├── repositoryCustomer.ts
│ ├── repositoryOrdersDetail.ts
│ ├── repositoryOrder.ts
│ └── repositoryProduct.ts
└── tsconfig.json
Removes all database objects but not the database.
lambdaorm drop -e .env -s default
lambdaorm drop -e .env -s insights
Result:
data
├── default-ddl-20231129T110712162Z-push-Catalog.sql
├── default-ddl-20231129T110712163Z-push-Crm.sql
├── default-ddl-20231129T110712163Z-push-Ordering.json
├── default-ddl-20231129T111730593Z-clean-Catalog.sql
├── default-ddl-20231129T111730594Z-clean-Crm.sql
├── default-ddl-20231129T111730594Z-clean-Ordering.json
├── insights-ddl-20231129T110303423Z-push-Insights.sql
└── insights-ddl-20231129T111738316Z-clean-Insights.sql
In this example:
Full documentation is available in the Wiki.
You can access various labs at github.com/lambda-orm/lambdaorm-labs
FAQs
The lambdaorm command line interface
The npm package lambdaorm-cli receives a total of 9 weekly downloads. As such, lambdaorm-cli popularity was classified as not popular.
We found that lambdaorm-cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.