• This repository has been archived on 21/May/2022
  • Stars
    star
    348
  • Rank 117,833 (Top 3 %)
  • Language
    Elixir
  • License
    MIT License
  • Created about 6 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

An easy-to-use Elixir HTTP client, built on the low-level Mint library.

Mojito Build Status Docs Hex.pm Version License

Now Deprecated

We recommend that you use Finch which is also built on Mint. The creator of Finch has an excellent writeup here describing the problems with Mojito, and as a result we use Finch internally at Appcues now.

Original Description

Mojito is an easy-to-use, high-performance HTTP client built using the low-level Mint library.

Mojito is built for comfort and for speed. Behind a simple and predictable interface, there is a sophisticated connection pool manager that delivers maximum throughput with no intervention from the user.

Just want to make one request and bail? No problem. Mojito can make one-off requests as well, using the same process-less architecture as Mint.

Quickstart

{:ok, response} = Mojito.request(method: :get, url: "https://github.com")

Why Mojito?

Mojito addresses the following design goals:

  • Little or no configuration needed. Use Mojito to make requests to as many different destinations as you like, without thinking about starting or selecting connection pools. Other clients like Hackney (and HTTPoison), Ibrowse (and HTTPotion), and Erlang's built-in httpc offer this feature, except that...

  • Connection pools should be used only for a single destination. Using a pool for making requests against multiple destinations is less than ideal, as many of the connections need to be reset before use. Mojito assigns requests to the correct pools transparently to the user. Other clients, such as Buoy, Hackney/ HTTPoison, Ibrowse/HTTPotion, etc. force the user to handle this themselves, which is often inconvenient if the full set of HTTP destinations is not known at compile time.

  • Redundant pools to reduce GenServer-related bottlenecks. Mojito can serve requests to the same destination from more than one connection pool, and those pools can be selected by round-robin at runtime in order to minimize resource contention in the Erlang VM. This feature is unique to Mojito.

Installation

Add mojito to your deps in mix.exs:

{:mojito, "~> 0.7.10"}

Configuration

The following config.exs config parameters are supported:

  • :timeout (milliseconds, default 5000) -- Default request timeout.
  • :max_body_size - Max body size in bytes. Defaults to nil in which case no max size will be enforced.
  • :transport_opts (t:Keyword.t, default []) -- Options to pass to the :gen_tcp or :ssl modules. Commonly used to make HTTPS requests with self-signed TLS server certificates; see below for details.
  • :pool_opts (t:pool_opts, default []) -- Configuration options for connection pools.

The following :pool_opts options are supported:

  • :size (integer) sets the number of steady-state connections per pool. Default is 5.
  • :max_overflow (integer) sets the number of additional connections per pool, opened under conditions of heavy load. Default is 10.
  • :pools (integer) sets the maximum number of pools to open for a single destination host and port (not the maximum number of total pools to open). Default is 5.
  • :strategy is either :lifo or :fifo, and selects which connection should be checked out of a single pool. Default is :lifo.
  • :destinations (keyword list of t:pool_opts) allows these parameters to be set for individual :"host:port" destinations.

For example:

use Mix.Config

config :mojito,
  timeout: 2500,
  pool_opts: [
    size: 10,
    destinations: [
      "example.com:443": [
        size: 20,
        max_overflow: 20,
        pools: 10
      ]
    ]
  ]

Certain configs can be overridden with each request. See request/1.

Usage

Make requests with Mojito.request/1 or Mojito.request/5:

>>>> Mojito.request(:get, "https://jsonplaceholder.typicode.com/posts/1")
## or...
>>>> Mojito.request(%{method: :get, url: "https://jsonplaceholder.typicode.com/posts/1"})
## or...
>>>> Mojito.request(method: :get, url: "https://jsonplaceholder.typicode.com/posts/1")

{:ok,
 %Mojito.Response{
   body: "{\n  \"userId\": 1,\n  \"id\": 1,\n  \"title\": \"sunt aut facere repellat provident occaecati excepturi optio reprehenderit\",\n  \"body\": \"quia et suscipit\\nsuscipit recusandae consequuntur expedita et cum\\nreprehenderit molestiae ut ut quas totam\\nnostrum rerum est autem sunt rem eveniet architecto\"\n}",
   headers: [
     {"content-type", "application/json; charset=utf-8"},
     {"content-length", "292"},
     {"connection", "keep-alive"},
     ...
   ],
   status_code: 200
 }}

By default, Mojito will use a connection pool for requests, automatically handling the creation and reuse of pools. If this is not desired, specify the pool: false option with a request to perform a one-off request. See the documentation for request/1 for more details.

Self-signed SSL/TLS certificates

To accept self-signed certificates in HTTPS connections, you can give the transport_opts: [verify: :verify_none] option to Mojito.request or Mojito.Pool.request:

>>>> Mojito.request(method: :get, url: "https://localhost:8443/")
{:error, {:tls_alert, 'bad certificate'}}

>>>> Mojito.request(method: :get, url: "https://localhost:8443/", opts: [transport_opts: [verify: :verify_none]])
{:ok, %Mojito.Response{ ... }}

Telemetry

Mojito integrates with the standard Telemetry library.

See the Mojito.Telemetry module for more information.

Changelog

See the CHANGELOG.md.

Contributing

Thanks for considering contributing to this project, and to the free software ecosystem at large!

Interested in contributing a bug report? Terrific! Please open a GitHub issue and include as much detail as you can. If you have a solution, even better -- please open a pull request with a clear description and tests.

Have a feature idea? Excellent! Please open a GitHub issue for discussion.

Want to implement an issue that's been discussed? Fantastic! Please open a GitHub pull request and write a clear description of the patch. We'll merge your PR a lot sooner if it is well-documented and fully tested.

Contributors and contributions are listed in the changelog. Heartfelt thanks to everyone who's helped make Mojito better.

Copyright and License

Copyright 2018-2021 Appcues, Inc.

This software is released under the MIT License.

More Repositories

1

exconstructor

An Elixir library for generating struct constructors that handle external data with ease.
Elixir
272
star
2

gen_retry

Utilities for retrying Elixir functions, with configurable delay and backoff.
Elixir
197
star
3

snabbdom-virtualize

Library for turning strings and DOM nodes into virtual DOM nodes compatible with snabbdom.
JavaScript
36
star
4

highcharts-themes

Super slick themes for Highcharts
CoffeeScript
28
star
5

strip_js

An Elixir library for stripping executable JS from HTML and CSS.
Elixir
13
star
6

config_smuggler

Encodes Elixir configs to and from string-formatted key/value pairs.
Elixir
12
star
7

appcues-android-sdk

The Appcues Android SDK
Kotlin
10
star
8

ueberauth_okta

Okta strategy for รœberauth
Elixir
8
star
9

appcues-react-native-module

The Appcues React Native Module
JavaScript
8
star
10

appcues-ios-sdk

The Appcues iOS SDK
Swift
7
star
11

stifle

Trap, observe, and release an Elixir function's side effects
Elixir
6
star
12

batch_please

Batch collector and processor for Elixir
Elixir
6
star
13

lockring

A fast mutex library for Elixir and other BEAM languages.
Elixir
6
star
14

appcues-flutter-plugin

The Appcues Flutter Plugin Package
Dart
4
star
15

segment-appcues-android

The Appcues Android SDK integration with Segment
Shell
3
star
16

useronboarding.org

CSS
3
star
17

ets_lock

An Elixir library for acquiring exclusive locks on ETS data.
Elixir
2
star
18

redis_cache

A wrapper for Redis which provides basic cache functionality in Elixir.
Elixir
2
star
19

segment-appcues-ios

The Appcues iOS SDK integration with Segment
Shell
2
star
20

jorb

Jorb is a simple jobs publisher/processor for Elixir
Elixir
1
star
21

email-templates

Collections of resources for Appcues email campaigns
HTML
1
star
22

microsites

CSS
1
star
23

appcues-capacitor-plugin

The Appcues Capacitor Plugin for Ionic Apps
TypeScript
1
star
24

react-starting-point

JavaScript
1
star
25

events

CSS
1
star
26

segment_spec

A simple Elixir data model for the events from Segment.com's spec.
Elixir
1
star
27

coffeecues

A rust HTTP server conforming to RFC 2324
Rust
1
star
28

brand

Public branding material for Appcues. Mostly because we love git :]
HTML
1
star
29

bbdd

Boop Boop Dedupe
Elixir
1
star