<?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: Abhigyan</title>
    <description>The latest articles on DEV Community by Abhigyan (@spez).</description>
    <link>https://dev.to/spez</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%2F388011%2Fac5c12ad-d438-4ec3-8da2-2ad615356fb1.gif</url>
      <title>DEV Community: Abhigyan</title>
      <link>https://dev.to/spez</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/spez"/>
    <language>en</language>
    <item>
      <title>For your next post!</title>
      <dc:creator>Abhigyan</dc:creator>
      <pubDate>Sun, 13 Sep 2020 17:01:38 +0000</pubDate>
      <link>https://dev.to/spez/for-your-next-post-12k4</link>
      <guid>https://dev.to/spez/for-your-next-post-12k4</guid>
      <description>&lt;p&gt;Get some amazing GIFs and images of glitched VueJS logo &lt;a href="https://archive.org/details/vue-glitch"&gt;here&lt;/a&gt; for your next VueJS post! You can use them for free as they are provided under the &lt;em&gt;Creative Commons&lt;/em&gt; license. The cover image of this post is also one of them.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>vue</category>
      <category>writing</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Fetch to var</title>
      <dc:creator>Abhigyan</dc:creator>
      <pubDate>Sat, 01 Aug 2020 03:45:38 +0000</pubDate>
      <link>https://dev.to/spez/fetch-to-var-511</link>
      <guid>https://dev.to/spez/fetch-to-var-511</guid>
      <description>&lt;p&gt;In this huge world of JSON APIs, &lt;code&gt;fetch&lt;/code&gt; is the most common implementation for receiving an HTTP response from an API. However, it's a lot more difficult for newbies to get the fetch data into a variable. Here it is:&lt;br&gt;
&lt;/p&gt;
&lt;div class="runkit-element"&gt;
  &lt;code&gt;
    
const fetch = require("node-fetch")

  &lt;/code&gt;
  &lt;code&gt;
    
// A function to get data from a URL
async function getData(url) {
    const x = await fetch(url)  // We wait for the data to arrive
    return await x.json()  // We wait for the data to convert to JSON
}

// We wait for the data to arrive
const data = await getData("https://jsonplaceholder.typicode.com/todos/1")

// We log/print the arrived JSON data
console.log(data)

  &lt;/code&gt;
&lt;/div&gt;


</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>node</category>
    </item>
    <item>
      <title>Open or Closed-Source?</title>
      <dc:creator>Abhigyan</dc:creator>
      <pubDate>Tue, 02 Jun 2020 14:29:27 +0000</pubDate>
      <link>https://dev.to/spez/open-or-closed-source-1cnl</link>
      <guid>https://dev.to/spez/open-or-closed-source-1cnl</guid>
      <description>&lt;p&gt;Is contributing to open-source still good for entrepreneurs or just make projects private and earn a living?&lt;/p&gt;

</description>
      <category>opensource</category>
    </item>
  </channel>
</rss>
