---
title: Getting Started with only Smart Contracts.
order: 0
---

You are not interested by the client side part and just want help on developing/compiling and deploying your contracts, this options is just for you, for the next step, you can go to the [tutorial](./tutorial/tutorial.html)

Using NPM:

```bash
mkdir my-dapp
cd my-dapp
npx create-dapp-stack
npm install
npm run das start
```

or using yarn:

```bash
mkdir my-dapp
cd my-dapp
npx create-dapp-stack
yarn install
yarn das start
```
