First Step

Quick Start

Core Concepts

Help / Debugging

FAQ

Contact Support

First Step - Introduction

Quick Start Guide : Extraction

Speedbuild currently support just Django and Express framework.

SpeedBuild can either extract features by their names or their route.

SpeedBuild extraction follow this format : speedbuild extract <name_of_feature_or_route> <path_to_feature> --<framework>

NOTE : we need to be in the project root directory before we can run this command.

# Extract with name

For example if we wanted to extract the CheckoutCart feature from a django project, we will do

speedbuild extract CheckoutCart shop/views.py --django

This Extract the CheckoutCart feature from the shop django app

# Extract with route

speedbuild extract /home routes/contact_routes.js --express

This command will scan the routes/contact_routes.js file, identify and extract the feature attached to the specified route "/home".