Skip to content

Commit

Permalink
🔖 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewvy committed Oct 1, 2017
1 parent 4cd53e7 commit d406726
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ a small layer of abstraction for handling and subscribing to domain events.

Note: This is a super minimal client wrapper around the Chrome Debugging Protocol.

## Installation

Add `:chrome_remote_interface` to your `mix.exs` file!

```elixir
def deps do
[
{:chrome_remote_interface, "~> 0.0.4"}
]
end
```

## Usage

> Note: In these examples, it assumes you're already running chrome headless with remote debugging enabled.
Expand Down Expand Up @@ -46,15 +58,3 @@ iex(5)> ChromeRemoteInterface.RPC.Page.navigate(page_pid, %{url: "https://google
iex(6)> ChromeRemoteInterface.RPC.Page.printToPDF(page_pid, %{})
{:ok, %{"id" => 2, "result" => %{"data" => "JVBERi0xLj..."}}}
```

## Installation

Add `:chrome_remote_interface` to your `mix.exs` file!

```elixir
def deps do
[
{:chrome_remote_interface, "~> 0.0.3"}
]
end
```
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule ChromeRemoteInterface.Mixfile do
def project do
[
app: :chrome_remote_interface,
version: "0.0.3",
version: "0.0.4",
elixir: "~> 1.5",
start_permanent: Mix.env == :prod,
deps: deps(),
Expand Down

0 comments on commit d406726

Please sign in to comment.