Popularity
3.9
Declining
Activity
0.0
Stable
29
4
3

Monthly Downloads: 4
Programming language: Elixir
License: MIT License

nifty alternatives and similar packages

Based on the "Native Implemented Functions" category.
Alternatively, view nifty alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of nifty or a related project?

Add another 'Native Implemented Functions' Package

README

Nifty

Helper script for setting up the boilerplate required when writing a NIF. I'm using it by installing as an archive, but I guess you could install it as a dep.

Install

git clone [email protected]:rossjones/nifty.git
cd nifty
mix do archive.build, archive.install

Commands

# Creates a skeleton Makefile, c source and Elxiir module.
mix nifty.gen --library hello --module MyApp.Nif

The compile and clean tasks should happen when your normal mix compile and mix clean calls happen.

Extra info

How to set up compilation for make was found at http://spin.atomicobject.com/2015/03/16/elixir-native-interoperability-ports-vs-nifs/#comment-531191 which was very helpful in getting started. The mix tasks are derived from https://github.com/asbaker/elixir-interop-examples/tree/master/serial_nif