# Calling Elvis

[](https://crates.io/crates/elvis)
[](https://docs.rs/elvis/)
[](https://crates.io/crates/elvis)
[](https://discord.gg/dxpefwy)
[](https://choosealicense.com/licenses/mit/)
Is anybody home? [The Evlis Book][1] mainly talks about the usage of [elvis][2], here is our [roadmap][roadmap], come and [join][community] us !~
## Getting Start
```
# Install elvis package manager
$ cargo install epm
# New your awesome-app
$ epm new my-awesome-app
# Start development server
$ cd my-awesome-app && epm dev
[INFO warp::server] listening on http://0.0.0.0:3000
```
## Hello, World!
```rust
//! src/lib.rs
use elvis::{
prelude::*,
widgets::{layouts::Center, Text},
};
#[page]
struct Index;
impl LifeCycle for Index {
fn create(&self) -> Node {
Center::new()
.child(Text::new().text("Hello, World!"))
.into()
}
}
```
## Examples
+ [hello-world][hello-world-example]
+ [click][click-example]
+ [router][router-example]
+ [todo-mvc][todo-mvc]
## LICENSE
Heartbreak Hotel.
[1]: https://elvisjs.github.io/book
[2]: https://docs.rs/elvis
[community]: https://elvisjs.github.io/book/community
[hello-world-example]: https://github.com/elvisjs/elvis/tree/master/examples/hello-world
[click-example]: https://github.com/elvisjs/elvis/tree/master/examples/click
[router-example]: https://github.com/elvisjs/elvis/tree/master/examples/router
[todo-mvc]: https://github.com/elvisjs/elvis/tree/master/examples/todo-mvc
[roadmap]: https://github.com/elvisjs/elvis/milestones