diff --git a/native/01_quick-start/01_introduction.md b/native/01_quick-start/01_introduction.md index b2eb4e5..6208862 100644 --- a/native/01_quick-start/01_introduction.md +++ b/native/01_quick-start/01_introduction.md @@ -5,9 +5,19 @@ title: Introduction The EOS Network is one of the most performant blockchains in the world. It is capable of processing 10,000+ transactions per second, with minimal fees and confirmation times. -With some of the largest applications in the world running on the EOS Network, -it is a great place to take your next world-changing idea and make it a reality. - Before you begin, you should have a basic understanding of blockchain technology and the EOS Network. If you are new to blockchain, check out our [Core Concepts](/docs/02_core-concepts/10_blockchain-basics/10_decentralization.md) section which dives into the knowledge you need to get off on the right foot. + +## Start coding immediately + +We recommend trying things out in the [Web IDE](https://ide.eosnetwork.com/) before you start developing locally. + +```bash +npm create eos@latest myproject +``` + +Follow the prompts, and it will set up either a [Template Project](https://github.com/eosnetworkfoundation/template-projects) +or a barebones project with a simple contract, tests, and deployment scripts as well as a frontend of your choosing (SvelteKit, Next.js (react), or Nuxt (vue)). + +Check out the next section to get started with your first smart contract.