elixir-nodejs icon indicating copy to clipboard operation
elixir-nodejs copied to clipboard

An Elixir API for calling Node.js functions

Results 11 elixir-nodejs issues
Sort by recently updated
recently updated
newest added

Hey, How does elixir-nodejs handle function callbacks and promises? I couldn't find those topics on docs. Cheers, Gustavo

Hi! I have been trying the library (which is fantastic!) but I'm experiencing issues with characters encoding. If the return string from the called JS function contains UTF-8 characters, the...

Bumps [ex_doc](https://github.com/elixir-lang/ex_doc) from 0.22.6 to 0.25.1. Changelog Sourced from ex_doc's changelog. v0.25.1 (2021-08-02) Enhancements Group callbacks Use shell lexer for code blocks with no language and starting with $ Bug...

dependencies

Bumps [excoveralls](https://github.com/parroty/excoveralls) from 0.13.1 to 0.14.2. Release notes Sourced from excoveralls's releases. v0.14.2 Enhancements Minimum support for lcov - experimental (#261, #264). v0.14.1 Changes Fix HTML tag typo (#259). v0.14.0...

dependencies

_Dependabot Preview will be shut down on August 3rd, 2021. In order to keep getting Dependabot updates, please merge this PR and migrate to GitHub-native Dependabot before then._ Dependabot has...

dependencies

Oh no, I made it worse :scream: It looks like [my PR that was supposed to get rid of implementation leaks](https://github.com/revelrylabs/elixir-nodejs/pull/45) introduced some new ones. I should have tested my...

I'm curious as to whether it's possible, and what it would take to support ES6 (async) generators. I imagine we could support them through the stream APIs

I wrote a JS function that fetches some data and uses it to render a React/Vue component. I decided to do some load testing and for consistency's sake I mocked...

Hi, I am having difficulty configuring elixir-nodeJS. Here is what, I did in Application.ex. %{ id: NodeJS, start: {NodeJS, :start_link, [[path: "/workspace/lib/keila/JS", pool_size: 4]]} } In demos.ex defmodule Keila.Demos do...

## Problem: When NodeJS returning strings contains UTF-8 chars, it would be convereted to binary instead of string. ## Attempt fix Using `IO.iodata_to_binary()` mentioned in [stackoverflow question](https://stackoverflow.com/questions/32927915/elixir-string-force-encode-utf-8)