<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: ECMA-King87</title>
    <description>The latest articles on DEV Community by ECMA-King87 (@ecmaking87).</description>
    <link>https://dev.to/ecmaking87</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3691799%2F625c1f09-c63a-42e0-b5e0-37199a8b0911.jpg</url>
      <title>DEV Community: ECMA-King87</title>
      <link>https://dev.to/ecmaking87</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ecmaking87"/>
    <language>en</language>
    <item>
      <title>ArachnoScript Runtime v0.2.1 Released 🚀 - Major Improvements &amp; New Features</title>
      <dc:creator>ECMA-King87</dc:creator>
      <pubDate>Sun, 10 May 2026 19:43:12 +0000</pubDate>
      <link>https://dev.to/ecmaking87/arachnoscript-runtime-v021-released-major-improvements-new-features-1ofc</link>
      <guid>https://dev.to/ecmaking87/arachnoscript-runtime-v021-released-major-improvements-new-features-1ofc</guid>
      <description>&lt;h1&gt;
  
  
  ArachnoScript Runtime v0.2.1 Released 🚀 - Major Improvements &amp;amp; New Features
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;Hey Dev.to!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;It's been an exciting journey since I first introduced &lt;strong&gt;ArachnoScript&lt;/strong&gt;. Today, I'm happy to announce the release of &lt;strong&gt;ArachnoScript Runtime v0.2.1&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;This version brings a lot of under-the-hood improvements, bug fixes, and exciting new features.&lt;/p&gt;

&lt;h3&gt;
  
  
  What's New in v0.2.1
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Improved For Loop Syntax&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// Old syntax&lt;/span&gt;
&lt;span class="k"&gt;for &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;i&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="nx"&gt;i&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt; &lt;span class="mi"&gt;10&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="nx"&gt;i&lt;/span&gt;&lt;span class="o"&gt;++&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{}&lt;/span&gt;

&lt;span class="c1"&gt;// New syntax&lt;/span&gt;
&lt;span class="k"&gt;for &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;spawn&lt;/span&gt; &lt;span class="nx"&gt;i&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="nx"&gt;i&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt; &lt;span class="mi"&gt;10&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="nx"&gt;i&lt;/span&gt;&lt;span class="o"&gt;++&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Improved CLI
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Bash&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Old way&lt;/span&gt;
are ./path/to/script.as

&lt;span class="c"&gt;# New way&lt;/span&gt;
are run ./path/to/script.as
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h1&gt;
  
  
  Quick evaluation
&lt;/h1&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;are &lt;span class="nt"&gt;-e&lt;/span&gt; &lt;span class="s2"&gt;"Console.log('Hello World!');"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Major Changes
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Optimized lexer + fixed string lexing bugs&lt;/li&gt;
&lt;li&gt;Many parser fixes and improvements (constructor logic, object literals, if statements, class properties, etc.)&lt;/li&gt;
&lt;li&gt;Significant Runtime improvements&lt;/li&gt;
&lt;li&gt;New macros: #_http_listen, #_http_serve, #_real_path, #_path_relative_to_file, etc.&lt;/li&gt;
&lt;li&gt;Removed old #_http_listen_and_serve macro&lt;/li&gt;
&lt;li&gt;Added new http and regexp standard library modules&lt;/li&gt;
&lt;li&gt;Updated many existing standard library modules (strings, arrays, io, fs, math, etc.)&lt;/li&gt;
&lt;li&gt;Fixed several bugs (including await, macros, and path handling)&lt;/li&gt;
&lt;li&gt;Many stability and performance improvements&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  How to Install (Windows)
&lt;/h3&gt;

&lt;p&gt;Go to the GitHub repository: &lt;a href="https://github.com/ECMA-King87/ArachnoScript-Runtime-Engine-ARE-" rel="noopener noreferrer"&gt;https://github.com/ECMA-King87/ArachnoScript-Runtime-Engine-ARE-&lt;/a&gt;&lt;br&gt;
Go to the Releases section&lt;br&gt;
Download the latest v0.2.1 assets&lt;br&gt;
Run the installer (or extract the zip)&lt;br&gt;
Start using the are command&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; Currently focused on Windows. macOS and Linux support will arrive by the v1.0 release.&lt;/p&gt;

&lt;p&gt;Join the community&lt;/p&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/ECMA-King87/ArachnoScript-Runtime-Engine-ARE-" rel="noopener noreferrer"&gt;https://github.com/ECMA-King87/ArachnoScript-Runtime-Engine-ARE-&lt;/a&gt;&lt;br&gt;
Official Discord: &lt;a href="https://discord.gg/nQm7v2eXWt" rel="noopener noreferrer"&gt;https://discord.gg/nQm7v2eXWt&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What do you think about this direction? Feedback and ideas are very welcome!&lt;br&gt;
Thanks for reading 🚀&lt;/p&gt;

&lt;h1&gt;
  
  
  ArachnoScript #ProgrammingLanguages #ShowDev #JavaScript
&lt;/h1&gt;

</description>
      <category>cli</category>
      <category>news</category>
      <category>showdev</category>
      <category>tooling</category>
    </item>
    <item>
      <title>[Boost]</title>
      <dc:creator>ECMA-King87</dc:creator>
      <pubDate>Sun, 11 Jan 2026 11:12:18 +0000</pubDate>
      <link>https://dev.to/ecmaking87/-58</link>
      <guid>https://dev.to/ecmaking87/-58</guid>
      <description>&lt;div class="ltag__link--embedded"&gt;
  &lt;div class="crayons-story "&gt;
  &lt;a href="https://dev.to/ecmaking87/i-built-my-own-javascript-inspired-programming-language-arachnoscript-50p6" class="crayons-story__hidden-navigation-link"&gt;I built my own JavaScript-inspired programming language — ArachnoScript&lt;/a&gt;


  &lt;div class="crayons-story__body crayons-story__body-full_post"&gt;
    &lt;div class="crayons-story__top"&gt;
      &lt;div class="crayons-story__meta"&gt;
        &lt;div class="crayons-story__author-pic"&gt;

          &lt;a href="/ecmaking87" class="crayons-avatar  crayons-avatar--l  "&gt;
            &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3691799%2F625c1f09-c63a-42e0-b5e0-37199a8b0911.jpg" alt="ecmaking87 profile" class="crayons-avatar__image" width="800" height="813"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
        &lt;div&gt;
          &lt;div&gt;
            &lt;a href="/ecmaking87" class="crayons-story__secondary fw-medium m:hidden"&gt;
              ECMA-King87
            &lt;/a&gt;
            &lt;div class="profile-preview-card relative mb-4 s:mb-0 fw-medium hidden m:inline-block"&gt;
              
                ECMA-King87
                
              
              &lt;div id="story-author-preview-content-3146567" class="profile-preview-card__content crayons-dropdown branded-7 p-4 pt-0"&gt;
                &lt;div class="gap-4 grid"&gt;
                  &lt;div class="-mt-4"&gt;
                    &lt;a href="/ecmaking87" class="flex"&gt;
                      &lt;span class="crayons-avatar crayons-avatar--xl mr-2 shrink-0"&gt;
                        &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3691799%2F625c1f09-c63a-42e0-b5e0-37199a8b0911.jpg" class="crayons-avatar__image" alt="" width="800" height="813"&gt;
                      &lt;/span&gt;
                      &lt;span class="crayons-link crayons-subtitle-2 mt-5"&gt;ECMA-King87&lt;/span&gt;
                    &lt;/a&gt;
                  &lt;/div&gt;
                  &lt;div class="print-hidden"&gt;
                    
                      Follow
                    
                  &lt;/div&gt;
                  &lt;div class="author-preview-metadata-container"&gt;&lt;/div&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

          &lt;/div&gt;
          &lt;a href="https://dev.to/ecmaking87/i-built-my-own-javascript-inspired-programming-language-arachnoscript-50p6" class="crayons-story__tertiary fs-xs"&gt;&lt;time&gt;Jan 3&lt;/time&gt;&lt;span class="time-ago-indicator-initial-placeholder"&gt;&lt;/span&gt;&lt;/a&gt;
        &lt;/div&gt;
      &lt;/div&gt;

    &lt;/div&gt;

    &lt;div class="crayons-story__indention"&gt;
      &lt;h2 class="crayons-story__title crayons-story__title-full_post"&gt;
        &lt;a href="https://dev.to/ecmaking87/i-built-my-own-javascript-inspired-programming-language-arachnoscript-50p6" id="article-link-3146567"&gt;
          I built my own JavaScript-inspired programming language — ArachnoScript
        &lt;/a&gt;
      &lt;/h2&gt;
        &lt;div class="crayons-story__tags"&gt;
            &lt;a class="crayons-tag crayons-tag--filled  " href="/t/showdev"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;showdev&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/javascript"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;javascript&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/programming"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;programming&lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="crayons-story__bottom"&gt;
        &lt;div class="crayons-story__details"&gt;
          &lt;a href="https://dev.to/ecmaking87/i-built-my-own-javascript-inspired-programming-language-arachnoscript-50p6" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left"&gt;
            &lt;div class="multiple_reactions_aggregate"&gt;
              &lt;span class="multiple_reactions_icons_container"&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/sparkle-heart-5f9bee3767e18deb1bb725290cb151c25234768a0e9a2bd39370c382d02920cf.svg" width="24" height="24"&gt;
                  &lt;/span&gt;
              &lt;/span&gt;
              &lt;span class="aggregate_reactions_counter"&gt;1&lt;span class="hidden s:inline"&gt;&amp;nbsp;reaction&lt;/span&gt;&lt;/span&gt;
            &lt;/div&gt;
          &lt;/a&gt;
            &lt;a href="https://dev.to/ecmaking87/i-built-my-own-javascript-inspired-programming-language-arachnoscript-50p6#comments" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left flex items-center"&gt;
              

              &lt;span class="hidden s:inline"&gt;Add&amp;nbsp;Comment&lt;/span&gt;
            &lt;/a&gt;
        &lt;/div&gt;
        &lt;div class="crayons-story__save"&gt;
          &lt;small class="crayons-story__tertiary fs-xs mr-2"&gt;
            1 min read
          &lt;/small&gt;
            
              &lt;span class="bm-initial"&gt;
                

              &lt;/span&gt;
              &lt;span class="bm-success"&gt;
                

              &lt;/span&gt;
            
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;/div&gt;


</description>
      <category>javascript</category>
      <category>programming</category>
      <category>showdev</category>
    </item>
    <item>
      <title>I built my own JavaScript-inspired programming language — ArachnoScript</title>
      <dc:creator>ECMA-King87</dc:creator>
      <pubDate>Sat, 03 Jan 2026 20:01:11 +0000</pubDate>
      <link>https://dev.to/ecmaking87/i-built-my-own-javascript-inspired-programming-language-arachnoscript-50p6</link>
      <guid>https://dev.to/ecmaking87/i-built-my-own-javascript-inspired-programming-language-arachnoscript-50p6</guid>
      <description>&lt;h2&gt;
  
  
  Introducing ArachnoScript
&lt;/h2&gt;

&lt;p&gt;ArachnoScript (AS) is a general-purpose programming language currently under active development. It is accompanied by the ArachnoScript Runtime Environment (ARE), the execution platform responsible for loading, executing, and managing ArachnoScript applications.&lt;/p&gt;

&lt;p&gt;Rather than viewing the runtime as a separate implementation detail, ArachnoScript is designed around it. The language defines the syntax, semantics, and programming model, while ARE provides the infrastructure required to execute programs, manage application state, load modules, expose standard library functionality, and support the tooling that surrounds the language. Together, they form a complete development and execution platform.&lt;/p&gt;

&lt;p&gt;The project is implemented in Go and is organized into a collection of independent components, each responsible for a specific stage of program execution. The current implementation includes a lexer, parser, runtime, module system, standard library infrastructure, and supporting utilities that collectively provide the foundation for the language. This modular architecture allows individual components to evolve without introducing unnecessary complexity into the rest of the system.&lt;/p&gt;

&lt;p&gt;The ArachnoScript Runtime Environment&lt;/p&gt;

&lt;p&gt;The ArachnoScript Runtime Environment, commonly referred to as ARE, is responsible for executing every ArachnoScript program. It provides the services required by applications during execution while maintaining a clear separation between language implementation and platform-specific functionality.&lt;/p&gt;

&lt;p&gt;ARE is designed as a long-term platform rather than a simple interpreter. As the language evolves, the runtime will continue to serve as the stable execution environment regardless of the underlying execution strategy. Whether a program is interpreted, executed as bytecode, or eventually compiled to native machine code, the runtime remains the component responsible for coordinating execution and exposing the services available to applications.&lt;/p&gt;

&lt;p&gt;Beyond program execution, ARE provides facilities for module loading, package integration, runtime services, memory management, error reporting, diagnostics, and interaction with the operating system. The runtime is also designed to accommodate future capabilities without requiring significant changes to user code, allowing the language ecosystem to grow while maintaining compatibility.&lt;/p&gt;

&lt;p&gt;Architecture&lt;/p&gt;

&lt;p&gt;ArachnoScript follows a modular architecture in which each subsystem is responsible for a well-defined task. Source code is processed through lexical analysis and parsing before being handed to the runtime for execution. This separation of responsibilities keeps the implementation maintainable while making it easier to improve or replace individual components as the language evolves.&lt;/p&gt;

&lt;p&gt;The project is currently progressing toward a bytecode-based execution model that will provide a more efficient and extensible foundation for future releases. This transition also establishes the groundwork for advanced tooling, improved diagnostics, optimization opportunities, and additional execution targets without fundamentally changing the language itself.&lt;/p&gt;

&lt;p&gt;Project Goals&lt;/p&gt;

&lt;p&gt;The primary objective of ArachnoScript is to build a language with a predictable execution model, a maintainable implementation, and a runtime capable of supporting applications beyond simple scripting. Development is focused not only on the language itself, but also on the surrounding ecosystem, including developer tooling, libraries, package management, debugging facilities, and runtime capabilities.&lt;/p&gt;

&lt;p&gt;ArachnoScript is an actively evolving project, and both the language and ARE will continue to expand through incremental releases. Future articles will explore individual components of the implementation, design decisions, runtime internals, language features, and the engineering challenges involved in building and maintaining a programming language from scratch.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>programming</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
