<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Mongoose CRUD by Tony Grimes</title>
      <link>https://padlet.com/acidtone/3bfm7ngr6m0elrz1</link>
      <description>Building RESTful APIs using Mongoose</description>
      <language>en-us</language>
      <pubDate>2021-05-11 11:23:36 UTC</pubDate>
      <lastBuildDate>2021-11-03 13:44:59 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet.net/icons/png/1f4bb.png</url>
      </image>
      <item>
         <title>HTTP Review</title>
         <author>acidtone</author>
         <link>https://padlet.com/acidtone/3bfm7ngr6m0elrz1/wish/1512847240</link>
         <description><![CDATA[<div>Headers, methods, status codes, etc<br><br>See C6 Tech 9 Slides</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-05-11 11:28:42 UTC</pubDate>
         <guid>https://padlet.com/acidtone/3bfm7ngr6m0elrz1/wish/1512847240</guid>
      </item>
      <item>
         <title>REST APIs</title>
         <author>acidtone</author>
         <link>https://padlet.com/acidtone/3bfm7ngr6m0elrz1/wish/1512851918</link>
         <description><![CDATA[<div>Common terminology and key takeaways when dealing with REST APIs<br><br>See C6 Tech 9 Slides</div>]]></description>
         <enclosure url="https://gist.github.com/acidtone/55f3c53bab36a7a9f9927a96a2556025" />
         <pubDate>2021-05-11 11:31:09 UTC</pubDate>
         <guid>https://padlet.com/acidtone/3bfm7ngr6m0elrz1/wish/1512851918</guid>
      </item>
      <item>
         <title>Mongoose Introduction: Kittens!</title>
         <author>acidtone</author>
         <link>https://padlet.com/acidtone/3bfm7ngr6m0elrz1/wish/1512900630</link>
         <description><![CDATA[<div>The Mongoose documentation has a great Getting Started tutorial if you're fuzzy on Mongoose.</div>]]></description>
         <enclosure url="https://mongoosejs.com/docs/" />
         <pubDate>2021-05-11 11:52:36 UTC</pubDate>
         <guid>https://padlet.com/acidtone/3bfm7ngr6m0elrz1/wish/1512900630</guid>
      </item>
      <item>
         <title>Mongoose CRUD Operations</title>
         <author>acidtone</author>
         <link>https://padlet.com/acidtone/3bfm7ngr6m0elrz1/wish/1512906586</link>
         <description><![CDATA[<div>The following document outlines Create operations. Scroll to the Related Gists section for Read, Update and Delete</div>]]></description>
         <enclosure url="https://gist.github.com/acidtone/c69a20727a1e11c58fcc9ff0503b1471" />
         <pubDate>2021-05-11 11:54:59 UTC</pubDate>
         <guid>https://padlet.com/acidtone/3bfm7ngr6m0elrz1/wish/1512906586</guid>
      </item>
      <item>
         <title>Deploy a Mongoose DB to MongoDB Atlas</title>
         <author>acidtone</author>
         <link>https://padlet.com/acidtone/3bfm7ngr6m0elrz1/wish/1513004564</link>
         <description><![CDATA[<div>Step-by-step instructions for connecting Mongoose to MongoDB Atlas</div>]]></description>
         <enclosure url="https://gist.github.com/acidtone/534b025d6212a003a8a8ec3030a4d4ae" />
         <pubDate>2021-05-11 12:28:25 UTC</pubDate>
         <guid>https://padlet.com/acidtone/3bfm7ngr6m0elrz1/wish/1513004564</guid>
      </item>
      <item>
         <title>Discord Question: How many schemas?</title>
         <author>acidtone</author>
         <link>https://padlet.com/acidtone/3bfm7ngr6m0elrz1/wish/1513007802</link>
         <description><![CDATA[<div>Is it better to set up <strong>one </strong>Schema for combined User &amp; Item entry <br><br>OR Is it better to set up <strong>two </strong>Schemas - one for Users and one for Items (which would create two collections, I think) and then link them "somehow" via the UserName.&nbsp;<br><br>We ask because Users and Items will have different operations in that the User can add/edit/delete their Items, and can also Create/Edit/Delete their accounts.</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-05-11 12:29:25 UTC</pubDate>
         <guid>https://padlet.com/acidtone/3bfm7ngr6m0elrz1/wish/1513007802</guid>
      </item>
      <item>
         <title>REST APIs: Best practices</title>
         <author>acidtone</author>
         <link>https://padlet.com/acidtone/3bfm7ngr6m0elrz1/wish/1513034121</link>
         <description><![CDATA[<div>A great article outline some (opinionated) conventions and best practices to keep in mind when designing your REST API.</div>]]></description>
         <enclosure url="https://stackoverflow.blog/2020/03/02/best-practices-for-rest-api-design/" />
         <pubDate>2021-05-11 12:36:59 UTC</pubDate>
         <guid>https://padlet.com/acidtone/3bfm7ngr6m0elrz1/wish/1513034121</guid>
      </item>
      <item>
         <title>Seeding a Mongoose collection with initial data</title>
         <author>acidtone</author>
         <link>https://padlet.com/acidtone/3bfm7ngr6m0elrz1/wish/1513224758</link>
         <description><![CDATA[<div>There are many ways to do this but we'll probably just create a JSON file from the superhero data and import using Compass.</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-05-11 13:22:06 UTC</pubDate>
         <guid>https://padlet.com/acidtone/3bfm7ngr6m0elrz1/wish/1513224758</guid>
      </item>
      <item>
         <title>Postman: Automated tests</title>
         <author>acidtone</author>
         <link>https://padlet.com/acidtone/3bfm7ngr6m0elrz1/wish/1513536322</link>
         <description><![CDATA[<div>A sample Postman collection for testing endpoint response codes.</div>]]></description>
         <enclosure url="https://gist.github.com/acidtone/bbcd40dc57774dfd0b01ddf3745e905b" />
         <pubDate>2021-05-11 14:25:00 UTC</pubDate>
         <guid>https://padlet.com/acidtone/3bfm7ngr6m0elrz1/wish/1513536322</guid>
      </item>
   </channel>
</rss>
