Skip to main content

Create a Creamie project

Install the Creamie CLI and use the following command to automatically create all the folders and files required for your project.

creamie create <PROJECT_NAME>

Folder Structure#

The auto-generated project's folder structure will resemble this:

<PROJECT_NAME>
โ”œโ”€โ”€ ecosystem.config.js
โ”œโ”€โ”€ package.json
โ”œโ”€โ”€ package-lock.json
โ”œโ”€โ”€ server.js
โ”œโ”€โ”€ src
โ”‚ โ”œโ”€โ”€ app
โ”‚ โ”‚ โ”œโ”€โ”€ app-boot.js
โ”‚ โ”‚ โ”œโ”€โ”€ app-component.css
โ”‚ โ”‚ โ”œโ”€โ”€ app-component.html
โ”‚ โ”‚ โ”œโ”€โ”€ app-component.js
โ”‚ โ”‚ โ””โ”€โ”€ app-config.js
โ”‚ โ”œโ”€โ”€ assets
โ”‚ โ”‚ โ””โ”€โ”€ cream.png
โ”‚ โ”œโ”€โ”€ index.html
โ”‚ โ”œโ”€โ”€ index.js
โ”‚ โ””โ”€โ”€ styles
โ”‚ โ””โ”€โ”€ main.css
โ””โ”€โ”€ webpack.config.js