<?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: Yannick Mulemeri</title>
    <description>The latest articles on DEV Community by Yannick Mulemeri (@yannickm260).</description>
    <link>https://dev.to/yannickm260</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%2F1943115%2F330c1e89-2bdf-43ec-a0fc-234a60688be4.jpg</url>
      <title>DEV Community: Yannick Mulemeri</title>
      <link>https://dev.to/yannickm260</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/yannickm260"/>
    <language>en</language>
    <item>
      <title>Todo RESTful API built using NodeJS</title>
      <dc:creator>Yannick Mulemeri</dc:creator>
      <pubDate>Wed, 02 Oct 2024 14:12:54 +0000</pubDate>
      <link>https://dev.to/yannickm260/todo-restful-api-built-using-nodejs-gd1</link>
      <guid>https://dev.to/yannickm260/todo-restful-api-built-using-nodejs-gd1</guid>
      <description>&lt;p&gt;A RESTful API (Representational State Transfer API) is an application programming interface that follows the principles of REST, a set of architectural constraints used for building scalable web services. It allows communication between a client and a server over the web, typically using HTTP.&lt;/p&gt;

&lt;p&gt;REST APIs use standard HTTP methods to perform actions on resources. The most common methods are:&lt;/p&gt;

&lt;p&gt;GET: Retrieve data from the server (e.g., fetch a list of books).&lt;br&gt;
POST: Create new data on the server (e.g., add a new book).&lt;br&gt;
PUT: Update existing data (e.g., edit the details of a book).&lt;br&gt;
DELETE: Remove data from the server (e.g., delete a book).&lt;br&gt;
This project provides a simple RESTful API for managing a todo list. It is built using Node JS’ native HTTP module and allow for CRUD (Create, Read, Update, Delete) operations on todo items, which are stored in a JSON file.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>node</category>
      <category>restapi</category>
      <category>rest</category>
    </item>
  </channel>
</rss>
