Skip to content

steel-dev/steel-cookbook

Folders and files

NameName
Last commit message
Last commit date

Latest commit

208e637 · Mar 20, 2025

History

53 Commits
Mar 11, 2025
Mar 16, 2025
Mar 20, 2025
Mar 19, 2025
Mar 11, 2025
Mar 15, 2025
Nov 18, 2024
Mar 16, 2025
Mar 15, 2025
Mar 15, 2025
Mar 16, 2025
Mar 20, 2025
Mar 15, 2025

Repository files navigation

Steel Cookbook & Starter Projects

This repository contains official starter projects and recipes for building web automations with Steel. It is also the home of create-steel-app, a CLI tool that helps you quickly set up new Steel projects.

Create Steel App

create-steel-app is a command-line tool that helps you bootstrap Steel projects with your preferred automation framework.

Usage:

# Using npm
npm create steel-app@latest

# Using yarn
yarn create steel-app

# Using pnpm
pnpm create steel-app

# Using bun
bun create steel-app

Then follow the prompts!

Compatible with Node.js versions 18.0.0+, 20.0.0+, and 22.0.0+.

You can also directly specify the project name and the template you want to use via additional command line options. For example, to scaffold a Steel + Playwright project with TypeScript, run:

# npm 7+, extra double-dash is needed:
npm create steel-app@latest my-steel-app -- --template steel-playwright-starter-ts

# yarn
yarn create steel-app my-steel-app --template steel-playwright-starter-ts

# pnpm
pnpm create steel-app my-steel-app --template steel-playwright-starter-ts

# Bun
bun create steel-app my-steel-app --template steel-playwright-starter-ts

Starter Projects

Choose the starter that matches your preferred automation framework:

JavaScript/TypeScript

Python

Contributing

See our Contributing Guide for information on adding new recipes and examples.

Support