Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

better intro docs #239

Merged
merged 1 commit into from
Apr 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions native/01_quick-start/01_introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Loading