Popularity
0.7
Declining
Activity
0.0
Stable
4
1
0
Monthly Downloads: 10
Programming language: Elixir
License: MIT License
Tags:
Macros
backports alternatives and similar packages
Based on the "Macros" category.
Alternatively, view backports alternatives based on common mentions on social networks and blogs.
-
rulex
This tiny library (2 macros only) allows you to define very simple rule handler using Elixir pattern matching. -
TypedStructor
TypedStructor is a library for defining typed structs, exceptions and record macros with effortlessly. -
apix
Simple convention and DSL for transformation of elixir functions to an API for later documentation and or validation. -
Bang
Bang simply adds dynamic bang! functions to your existing module functions with after-callback.
Stream - Scalable APIs for Chat, Feeds, Moderation, & Video.
Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.
Promo
getstream.io

Do you think we are missing an alternative of backports or a related project?
Popular Comparisons
README
Backports
Tooling to make it possible to run "new" code in old Elixir versions.
Currently the following functions not available before 1.3 can be backported:
String.trim
String.to_charlist
String.pad_leading
String.pad_trailing
can replacetrim
andto_charlist
functions which were not available prior to Elixir 1.3.
Installation
If available in Hex, the package can be installed
by adding backports
to your list of dependencies in mix.exs
:
def deps do
[{:backports, "~> 0.2.0"}]
end
Usage
Whatever module uses a function that is not available, just include Backports
This code will work in Elixir 1.1 and 1.2
defmodule Foo do
use Backports
def bar do
String.trim(" amazing ")
end
end