<?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: pouchlabs</title>
    <description>The latest articles on DEV Community by pouchlabs (@pouchlabs).</description>
    <link>https://dev.to/pouchlabs</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1459089%2F2fb167f4-397e-4eec-923c-1a20b5f74eb6.png</url>
      <title>DEV Community: pouchlabs</title>
      <link>https://dev.to/pouchlabs</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/pouchlabs"/>
    <language>en</language>
    <item>
      <title>Blazing fast eventemitter3 alternative</title>
      <dc:creator>pouchlabs</dc:creator>
      <pubDate>Mon, 08 Sep 2025 05:04:13 +0000</pubDate>
      <link>https://dev.to/pouchlabs/blazing-fast-eventemitter3-alternative-41hf</link>
      <guid>https://dev.to/pouchlabs/blazing-fast-eventemitter3-alternative-41hf</guid>
      <description>&lt;p&gt;pemitter is a blazing fast eventemitter that runs on all js runtimes &lt;a href="https://GitHub.com/pouchlabs/pemitter" rel="noopener noreferrer"&gt;pemitter&lt;/a&gt; &lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>opensource</category>
      <category>eventdriven</category>
    </item>
    <item>
      <title>pouchlite next gen blazing fast js storage engine</title>
      <dc:creator>pouchlabs</dc:creator>
      <pubDate>Fri, 06 Dec 2024 17:20:45 +0000</pubDate>
      <link>https://dev.to/pouchlabs/pouchlite-next-gen-blazing-fast-js-storage-engine-16n3</link>
      <guid>https://dev.to/pouchlabs/pouchlite-next-gen-blazing-fast-js-storage-engine-16n3</guid>
      <description>&lt;p&gt;im thrilled to announce pouchlite offline first storage engine thats small,fast,flexible..&lt;a href="https://pouchlite.top" rel="noopener noreferrer"&gt;https://pouchlite.top&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>opensource</category>
      <category>database</category>
      <category>node</category>
    </item>
    <item>
      <title>Fasteejs new fast express alternative</title>
      <dc:creator>pouchlabs</dc:creator>
      <pubDate>Mon, 26 Aug 2024 07:11:19 +0000</pubDate>
      <link>https://dev.to/pouchlabs/fasteejs-new-fast-express-alternative-58g6</link>
      <guid>https://dev.to/pouchlabs/fasteejs-new-fast-express-alternative-58g6</guid>
      <description>&lt;p&gt;new kid with added goodies ,ship production ready endpoints&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="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="nx"&gt;Fastee&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;fasteejs&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;app&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;new&lt;/span&gt; &lt;span class="nc"&gt;Fastee&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt;&lt;span class="na"&gt;port&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="mi"&gt;4000&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="na"&gt;delay&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="mi"&gt;30000&lt;/span&gt;&lt;span class="p"&gt;})&lt;/span&gt; &lt;span class="c1"&gt;//pass port and shutdown delay&lt;/span&gt;

  &lt;span class="nx"&gt;app&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;get&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;/&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nf"&gt;function &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;req&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;res&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
     &lt;span class="nx"&gt;res&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;send&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Hello World&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
  &lt;span class="p"&gt;})&lt;/span&gt;

&lt;span class="nx"&gt;app&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;static&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;static&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,{&lt;/span&gt;&lt;span class="na"&gt;dotfiles&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="kc"&gt;false&lt;/span&gt;&lt;span class="p"&gt;})&lt;/span&gt; &lt;span class="c1"&gt;//pass valid folder path and optional config&lt;/span&gt;

 &lt;span class="c1"&gt;//shutdown listener&lt;/span&gt;
&lt;span class="nx"&gt;app&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;onShutdown&lt;/span&gt;&lt;span class="p"&gt;((&lt;/span&gt;&lt;span class="nx"&gt;signal&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;&lt;span class="o"&gt;=&amp;gt;&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="c1"&gt;//call service before shutdown&lt;/span&gt;
  &lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;before&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="nx"&gt;signal&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="p"&gt;})&lt;/span&gt;

  &lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="k"&gt;default&lt;/span&gt; &lt;span class="nx"&gt;app&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;try contibutions are welcomed&lt;br&gt;
&lt;a href="https://github.com/pouchlabs/fasteejs" rel="noopener noreferrer"&gt;fasteejs&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>opensource</category>
      <category>showdev</category>
      <category>node</category>
    </item>
    <item>
      <title>Launch documentation site in record time (pouchdocs)</title>
      <dc:creator>pouchlabs</dc:creator>
      <pubDate>Tue, 16 Jul 2024 10:16:22 +0000</pubDate>
      <link>https://dev.to/pouchlabs/launch-documentation-site-in-record-time-pouchdocs-295o</link>
      <guid>https://dev.to/pouchlabs/launch-documentation-site-in-record-time-pouchdocs-295o</guid>
      <description>&lt;p&gt;&lt;a href="https://pouchdocs.pouchlabs.xyz" rel="noopener noreferrer"&gt;pouchdocs&lt;/a&gt; is a documentation site built with sveltekit and supabase.checkout &lt;a href="https://github.com/pouchlabs/pouchdocs" rel="noopener noreferrer"&gt;github repo&lt;/a&gt; and compare it with other docs sites&lt;br&gt;
suggestions and contributions and stars are welcomed&lt;/p&gt;

</description>
      <category>documentation</category>
      <category>webdev</category>
      <category>sveltekit</category>
      <category>opensource</category>
    </item>
    <item>
      <title>introducing pouchrealtor blazing fast socket.io alternative pure websockets</title>
      <dc:creator>pouchlabs</dc:creator>
      <pubDate>Sat, 22 Jun 2024 11:41:10 +0000</pubDate>
      <link>https://dev.to/pouchlabs/introducing-pouchrealtor-blazing-fast-socketio-alternative-pure-websockets-43cl</link>
      <guid>https://dev.to/pouchlabs/introducing-pouchrealtor-blazing-fast-socketio-alternative-pure-websockets-43cl</guid>
      <description>&lt;p&gt;pouchrealtor is socket.io alternative that is inspired by it,the api is simple great Dx,blazing fast,autoreconnects by default check out &lt;br&gt;
&lt;a href="https://github.com/pouchlabs/pouchrealtor" rel="noopener noreferrer"&gt;pouchrealtor&lt;/a&gt;&lt;br&gt;
stars are welcomed also contributions and feedback&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>opensource</category>
      <category>node</category>
    </item>
    <item>
      <title>introducing op (pouchlite) pure js json storage engine</title>
      <dc:creator>pouchlabs</dc:creator>
      <pubDate>Tue, 28 May 2024 17:18:45 +0000</pubDate>
      <link>https://dev.to/pouchlabs/introducing-op-pouchlite-pure-js-json-storage-engine-440h</link>
      <guid>https://dev.to/pouchlabs/introducing-op-pouchlite-pure-js-json-storage-engine-440h</guid>
      <description>&lt;p&gt;pouchlite is blazing fast json and files engine its like sqlite,uses msgpack to encode and decode javascript object to json for storage,&lt;a href="https://github.com/pouchlabs/pouchlite" rel="noopener noreferrer"&gt;pouchlite&lt;/a&gt; check out and star us ,suggestions are welcomed&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>database</category>
      <category>showdev</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
