Step 3: Use a generator to scaffold out your app¶
TODO
We’ve used the word “scaffold” a few times but you might not know what that means. Scaffolding, in the Banana sense of the word, means generating files for your web app based on your specific configuration requests. In this step, you’ll see how Banana can generate files specifically for your favorite library or framework
—
with options for using other external libraries like Webpack, Babel and SASS—
with minimal effort.Create a project folder¶
Create a mytodo folder for all your codelab work:
mkdir mytodo && cd mytodo
This folder is where the generator will place your scaffolded project files.



