Next Generation Commerce As Code
npx storecraft create
Databases
Choose between MongoDB, SQLite, Postgres, MySql
Mongo DBSQLitePostgresMySQLTurso SQLiteNeon PostgresCloudflare D1Planetscale mysql
Storage
Choose between S3, R2, Google, Local and more
S3Google Storage
Cloud
Run anywhere, serverless or serverful
NodeDenoBunAWS LambdaGoogle CloudCloudflare Workers
Event Based
Respond to any event and craft your own logic
Extensible
Create your own extensions, payment gateways and more
Dashboard
Use our official Dashboard and more
Craft the perfect commerce as code application_
const app = new App({
general_store_name: "my-storecraft-app",
auth_admins_emails: ["john@doe.com"],
})
.withPlatform(new NodePlatform())
.withDatabase(new SQLite())
.withStorage(new NodeLocalStorage())
.withMailer(new SendGrid())
.on(
'orders/checkout/complete',
async (event) => {
const order: orderData = event.payload;
// send email here
}
)
await app.init();
await migrateToLatest(app.db, false);
http.createServer(app.handler).listen();
Use your favorite Payment Gateways
const app = new App(config)
.withPlatform(new NodePlatform())
.withDatabase(new MongoDB())
.withStorage(new GoogleStorage())
.withPaymentGateways(
{
'stripe': new Stripe(
{
publishable_key: '****',
secret_key: '****',
webhook_endpoint_secret: '****'
}
),
}
)
Official Dashboard
npx
storecraft create
Detailed OpenAPI docs
All rights reserved to storecraft.app (2025)