-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.xml
108 lines (89 loc) · 6.65 KB
/
index.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Elixirscript</title>
<link>https://elixirscript.github.io/</link>
<description>Recent content on Elixirscript</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Sat, 10 Feb 2018 10:10:21 -0600</lastBuildDate>
<atom:link href="https://elixirscript.github.io/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Elixirscript 0.32.0 Released</title>
<link>https://elixirscript.github.io/post/elixirscript-0.32.0-released/</link>
<pubDate>Sat, 10 Feb 2018 10:10:21 -0600</pubDate>
<guid>https://elixirscript.github.io/post/elixirscript-0.32.0-released/</guid>
<description>ElixirScript 0.32 is released. This release includes one major addition and a number of important changes.
ElixirScript.Test ElixirScript.Test is a framework for testing Elixir modules that interact with JavaScript via the FFI. For all other modules, ExUnit is still recommended. ElixirScript.Test&rsquo;s API is similar to ExUnit&rsquo;s API. ElixirScript.Test files must be placed in a folder named test_elixir_script. Tests are compiled and then are executed using node.js.
Changes Changes for this release include:</description>
</item>
<item>
<title>Elixirscript 0.31.0 Released</title>
<link>https://elixirscript.github.io/post/elixirscript-0.31.0-released/</link>
<pubDate>Sun, 24 Sep 2017 10:41:21 -0500</pubDate>
<guid>https://elixirscript.github.io/post/elixirscript-0.31.0-released/</guid>
<description>ElixirScript 0.31 is released. This release contains a number of bugfixes. There are also a few enhancements. ElixirScript can now take a path to compile. This is to support the compilation of modules defined in .exs files
For more information regarding changes, please check the changelog.</description>
</item>
<item>
<title>ElixirScript 0.30.0 Released</title>
<link>https://elixirscript.github.io/post/elixirscript-0.30.0-released/</link>
<pubDate>Tue, 15 Aug 2017 00:29:03 -0500</pubDate>
<guid>https://elixirscript.github.io/post/elixirscript-0.30.0-released/</guid>
<description>ElixirScript 0.30 is a large release with lots of changes. It includes a rewrite of the compiler, a change in JavaScript interoperability and much more. This is also the first version to require Erlang 20 and Elixir 1.5, compiled with Erlang 20. ElixirScript can compile your Elixir code and dependencies into JavaScript, with some limitations. These changes make this the best release of ElixirScript so far! This is a great point to give ElixirScript a try for yourself.</description>
</item>
<item>
<title>elixirscript project update</title>
<link>https://elixirscript.github.io/post/elixirscript-project-update/</link>
<pubDate>Mon, 10 Jul 2017 19:55:17 -0500</pubDate>
<guid>https://elixirscript.github.io/post/elixirscript-project-update/</guid>
<description>A major change is happening to ElixirScript. The compiler has been rewritten to take advantage of features in Erlang 20 and the upcoming Elixir 1.5. The work for this started shortly after my presentation on ElixirScript at Lonestar Elixir. This post will go over the changes that are happening and why.
The Old Compiler ElixirScript&rsquo;s old compiler compiled Elixir source code files. It would take these files and turn the code into the Elixir Abstract Syntax Tree (AST).</description>
</item>
<item>
<title>elixirscript 0.27.0 released</title>
<link>https://elixirscript.github.io/post/elixirscript-0.27.0-released/</link>
<pubDate>Fri, 17 Mar 2017 20:05:52 -0500</pubDate>
<guid>https://elixirscript.github.io/post/elixirscript-0.27.0-released/</guid>
<description> For a full list of changes, check out out the changelog.
Here are the major changes in this release:
Super The super special form has been implemented and with it, defoverridable
Global JavaScript Interop Any JavaScript function, property or module in the global namespace can be accessed by using the JS module
JS.alert(&quot;hello&quot;) JS.console.log(&quot;hello&quot;) JS.Date.now() </description>
</item>
<item>
<title>using with phoenix</title>
<link>https://elixirscript.github.io/guide/using-with-phoenix/</link>
<pubDate>Sun, 05 Mar 2017 14:27:53 -0600</pubDate>
<guid>https://elixirscript.github.io/guide/using-with-phoenix/</guid>
<description>This guide will walk through setting up a Phoenix project with Elixirscript. This guide assumes you have already created a Phoenix project
Update: 2017-08-15: This guide has been updated to cover both ElixirScript 0.30 and Phoenix 1.3
Update your mix.exs file to add the current version of elixirscript to your dependencies:
defp deps do [ #other deps {:elixir_script, &quot;~&gt; x.x&quot;} ] Run mix deps.get:
mix deps.get Next, Add the elixir_script compiler to your list of mix compilers.</description>
</item>
<item>
<title>elixirscript 0.26.0 released</title>
<link>https://elixirscript.github.io/post/elixirscript-0.26.0-released/</link>
<pubDate>Sat, 25 Feb 2017 16:46:24 -0600</pubDate>
<guid>https://elixirscript.github.io/post/elixirscript-0.26.0-released/</guid>
<description>For a full list of changes, check out out the changelog.
This version of Elixirscript has a lot of major changes. Here are some of the changes in the new release:
Bundled output This release is the bundle all output into a single file. Now the only file output will be Elixir.App.js.
Removed @on_js_load @on_js_load is no more. To start an application, do the following:
//Note: An ES module example.</description>
</item>
<item>
<title>Elixirscript 0.25.0 released</title>
<link>https://elixirscript.github.io/post/elixirscript-0.25.0-released/</link>
<pubDate>Sun, 19 Feb 2017 11:28:48 -0600</pubDate>
<guid>https://elixirscript.github.io/post/elixirscript-0.25.0-released/</guid>
<description>0.25.0 adds some big changes. For a full look at what&rsquo;s new, look at the changelog. Below is a summary of the major changes.
Select module format of output Beginning with this release, the module format of generated JavaScript is selectable. The choices are:
es - ES Modules (default)
common - CommonJS modules
umd - UMD modules
The common options means you can use the output in node without the need for tools like babel.</description>
</item>
</channel>
</rss>