# qjs [](https://travis-ci.org/flier/rust-quickjs) [](https://ci.appveyor.com/project/flier/rust-quickjs) [](https://crates.io/crates/qjs) [](https://docs.rs/crate/qjs/) [](https://deps.rs/repo/github/flier/rust-quickjs)
`qjs` is an experimental Rust binding for the QuickJS Javascript Engine
## Usage
To use `qjs` in your project, add the following to your Cargo.toml:
```toml
[dependencies]
qjs = "0.1"
```
## Example
```rust
let v: Option<i32> = qjs::eval("1+2").unwrap();
assert_eq!(v, Some(3));
```