mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
45 lines
3.6 KiB
XML
45 lines
3.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||
<channel>
|
||
<title>JerryScript Engine</title>
|
||
<description>JerryScript is a very lightweight JavaScript engine with capability to run on microcontrollers with less then 8KB of RAM.
|
||
</description>
|
||
<link>http://samsung.github.io/jerryscript/</link>
|
||
<atom:link href="http://samsung.github.io/jerryscript/feed.xml" rel="self" type="application/rss+xml"/>
|
||
<pubDate>Sat, 13 Jun 2015 19:23:38 +0300</pubDate>
|
||
<lastBuildDate>Sat, 13 Jun 2015 19:23:38 +0300</lastBuildDate>
|
||
<generator>Jekyll v2.5.3</generator>
|
||
|
||
<item>
|
||
<title>Hello World.js!</title>
|
||
<description><p>The concept of the Internet of Things (IoT) is becoming more and more popular. According to the reports of global corporations, there will be from 25 to 75 billion Internet of Things devices by 2020. Existence of a unified platform for developing applications of the IoT is essential domination in this field. Popularity of the JavaScript language in modern web, both on client and server sides, implies that providing a JavaScript-based platform for the IoT can attract developers to this platform.</p>
|
||
|
||
<div class="highlight"><pre><code class="language-js" data-lang="js"><span class="nx">print_hello</span><span class="p">(</span><span class="s2">&quot;Tom&quot;</span><span class="p">)</span>
|
||
|
||
<span class="kd">function</span> <span class="nx">print_hello</span> <span class="p">(</span><span class="nx">name</span><span class="p">)</span> <span class="p">{</span>
|
||
<span class="nx">print</span> <span class="p">(</span><span class="s2">&quot;Hi, &quot;</span> <span class="o">+</span> <span class="nx">name</span><span class="p">)</span>
|
||
<span class="p">}</span></code></pre></div>
|
||
|
||
<p>JerryScript engine satisfies the following requirements:</p>
|
||
|
||
<ul>
|
||
<li>Capable to run on MCU (ARM Cortex M)</li>
|
||
<li>Only few kilobytes of RAM available to the engine (&lt;64 KB RAM)</li>
|
||
<li>Constrained ROM space for the code of the engine (&lt;200 KB ROM)</li>
|
||
<li>On-device compilation and execution</li>
|
||
<li>The engine provides access to peripherals from JavaScript.</li>
|
||
</ul>
|
||
|
||
<p>Check out the <a href="http://github.com/Samsung/jerryscript">JerryScript sources</a> and start using JerryScript in you projects. Please, report all found bugs and request new features at <a href="http://github.com/Samsung/jerryscript/issues">JerryScript issue tracker</a>. If you have questions, feel free to ask them on <a href="http://github.com/Samsung/jerryscript/issues">issue tracker</a> and don’t forget to label it with <code>question</code> or <code>discussion</code>.</p>
|
||
|
||
</description>
|
||
<pubDate>Sat, 13 Jun 2015 16:30:58 +0300</pubDate>
|
||
<link>http://samsung.github.io/jerryscript/2015/06/13/hello-world-js.html</link>
|
||
<guid isPermaLink="true">http://samsung.github.io/jerryscript/2015/06/13/hello-world-js.html</guid>
|
||
|
||
|
||
</item>
|
||
|
||
</channel>
|
||
</rss>
|