replit-local-dev-loop

Featured

Configure Replit development workflow with hot reload, Webview, and Replit Agent. Use when setting up dev server, configuring run commands, debugging in Workspace, or using Replit Agent for AI-assisted development. Trigger with phrases like "replit dev server", "replit hot reload", "replit local development", "replit agent", "replit workflow".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Replit Local Dev Loop ## Overview Configure the Replit Workspace development cycle: run commands, hot reloading, port configuration, Webview preview, dev/production database separation, and Replit Agent for AI-assisted building. ## Prerequisites - Replit App with `.replit` configured - Node.js or Python project initialized - Familiarity with Replit Workspace UI ## Instructions ### Step 1: Configure Run Commands ```toml # .replit — run determines what happens when you click "Run" # Simple string command run = "npm run dev" # Array form (recommended for deployment) # run = ["sh", "-c", "npm run dev"] # Multiple services simultaneously # run = "npm run api & npm run frontend & wait" entrypoint = "index.ts" ``` **Compiled languages** need a compile step: ```toml # TypeScript compile = "npx tsc -b" run = "node dist/index.js" # Go compile = "go build -o main ." run = "./main" ``` ### Step 2: Hot Reload Setup **Node.js with tsx watch:** ```toml # .replit run = "npx tsx watch src/index.ts" ``` ```json { "scripts": { "dev": "tsx watch src/index.ts", "test": "vitest", "test:watch": "vitest --watch" } } ``` **Python with Flask auto-reload:** ```toml run = "python main.py" [env] FLASK_DEBUG = "1" ``` ```python # main.py — Flask auto-reloads in debug mode if __name__ == '__main__': app.run(host='0.0.0.0', port=3000, debug=True) ``` **Vite/Next.js dev server:** ```toml run = "npm run dev" [env] PORT = "3000" ``` ### Step 3: Port Configuration Replit...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

replit-deploy-integration

Deploy Replit apps with Autoscale, Reserved VM, and Static deployment types. Use when deploying to production, configuring deployment settings, setting up custom domains, or managing deployment secrets and health checks. Trigger with phrases like "deploy replit", "replit deployment", "replit autoscale", "replit reserved VM", "replit static deploy", "replit custom domain".

2,266 Updated today
jeremylongshore
AI & Automation Featured

replit-core-workflow-a

Build a full-stack web app on Replit with Express/Flask, PostgreSQL, Auth, and deployment. Use when creating a new production app on Replit from scratch, building the primary user-facing workflow, or following Replit best practices. Trigger with phrases like "build replit app", "replit full stack", "replit web app", "create replit project", "replit express flask".

2,266 Updated today
jeremylongshore
AI & Automation Featured

replit-hello-world

Create a minimal working Replit app with database, object storage, and auth. Use when starting a new Replit project, testing your setup, or learning Replit's built-in services (DB, Auth, Object Storage). Trigger with phrases like "replit hello world", "replit starter", "replit quick start", "first replit app", "replit example".

2,266 Updated today
jeremylongshore
AI & Automation Featured

replit-ci-integration

Configure CI/CD for Replit with GitHub Actions, automated testing, and deploy-on-push. Use when setting up automated testing, GitHub integration for Replit, or continuous deployment pipelines that deploy to Replit. Trigger with phrases like "replit CI", "replit GitHub Actions", "replit automated deploy", "CI replit", "replit GitHub".

2,266 Updated today
jeremylongshore
AI & Automation Featured

klaviyo-local-dev-loop

Configure Klaviyo local development with hot reload, mocking, and testing. Use when setting up a development environment, configuring test workflows, or establishing a fast iteration cycle with the Klaviyo API. Trigger with phrases like "klaviyo dev setup", "klaviyo local development", "klaviyo dev environment", "develop with klaviyo", "klaviyo testing".

2,266 Updated today
jeremylongshore