<?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: Stephen A Brooks</title>
    <description>The latest articles on DEV Community by Stephen A Brooks (@stephenbrooks220413).</description>
    <link>https://dev.to/stephenbrooks220413</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%2F652586%2Fbfdba01e-a5d3-45b3-8e87-86f719c1785b.png</url>
      <title>DEV Community: Stephen A Brooks</title>
      <link>https://dev.to/stephenbrooks220413</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/stephenbrooks220413"/>
    <language>en</language>
    <item>
      <title>Building a stack</title>
      <dc:creator>Stephen A Brooks</dc:creator>
      <pubDate>Sun, 06 Nov 2022 03:10:27 +0000</pubDate>
      <link>https://dev.to/stephenbrooks220413/building-a-stack-2mnh</link>
      <guid>https://dev.to/stephenbrooks220413/building-a-stack-2mnh</guid>
      <description>&lt;p&gt;Building a stack for data rendering and handling seemed like they all follow the same MVC structure. I might be wrong about that but it's the same idea but structured differently. Building an Express app is kind of similiar to the way you would with React, but not quite the same as Angular's build. Almost the same as asp.Net Core's MVC, or at least the same principle.&lt;/p&gt;

&lt;p&gt;When I learned the basics and learned how to build with Node and express for a full stack application, it opened my eyes to how it's done. I have built MERN apps and Express Apps as a freelancer since then, sometimes WordPress or shopify. Although I don't like using those because I don't feel creative when using platforms to piece together content, but if it what the client wants and they pay for it.&lt;/p&gt;

&lt;p&gt;This recent period of time seemed to have slowed down with website creations or even maintenance on existing ones.  Have any of you experienced this too or is it just my area? Even with referrals, when I did get some, it slowed down to. What I do during that time is keep learning new techniques and creating courses to sell, so I don't lose skills I learned either.&lt;/p&gt;

&lt;p&gt;My recent portfolio if anyone wants to critique or make suggestions, &lt;/p&gt;

&lt;p&gt;&lt;a href="https://stephens-webapps.herokuapp.com/"&gt;https://stephens-webapps.herokuapp.com/&lt;/a&gt; &lt;/p&gt;

</description>
      <category>node</category>
      <category>ejs</category>
      <category>css</category>
      <category>express</category>
    </item>
    <item>
      <title>Server language</title>
      <dc:creator>Stephen A Brooks</dc:creator>
      <pubDate>Sat, 30 Jul 2022 13:27:52 +0000</pubDate>
      <link>https://dev.to/stephenbrooks220413/server-language-35dk</link>
      <guid>https://dev.to/stephenbrooks220413/server-language-35dk</guid>
      <description>&lt;p&gt;I usually use node.js for my server language, and probably varies from each person. I know php has been around a while and has more support with it. Node is faster and handles multiple tasks, whereas php handles one at a time. So it comes down to what type of app you're going to build. Php seems easier to write and less lines of code, but node can be too with express. Correct me if I'm wrong, but isn't that why node is a part of javascript frameworks? Especially for ecommerce sites. C sharp is great but overkill for simple websites. Kind of like putting a hemi in a motorcycle.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>node</category>
      <category>mongodb</category>
    </item>
    <item>
      <title>Creating Server with Express &amp; Node.js</title>
      <dc:creator>Stephen A Brooks</dc:creator>
      <pubDate>Mon, 06 Jun 2022 01:24:36 +0000</pubDate>
      <link>https://dev.to/stephenbrooks220413/creating-server-with-express-nodejs-4i44</link>
      <guid>https://dev.to/stephenbrooks220413/creating-server-with-express-nodejs-4i44</guid>
      <description>&lt;p&gt;In your project folder,npm init -y, then run npm i express. Create an index.js file&lt;/p&gt;

&lt;p&gt;In the index.js file, that will start up your project at run time, write this code;&lt;/p&gt;

&lt;p&gt;`&lt;br&gt;
const express = require('express');&lt;br&gt;
const ejs = require('ejs');&lt;br&gt;
const app = new express();&lt;/p&gt;

&lt;p&gt;// this will set the file to be &lt;br&gt;
// viewed in views folder, your&lt;br&gt;
// index.ejs, html, pug, etc.&lt;br&gt;
app.set('view engine', 'ejs');&lt;/p&gt;

&lt;p&gt;app.listen(8000, () =&amp;gt; (&lt;br&gt;
 console.log('App running')&lt;br&gt;
))&lt;br&gt;
app.get('/', (req, res) =&amp;gt; {&lt;br&gt;
  res.render("index")&lt;br&gt;
});&lt;br&gt;
`&lt;br&gt;
I will be publishing an Express course for allow8ng logins, resgister, delete profile, post blogs, and routing to the blog by the unique id created by Mongoose automatically. If anyone interested in this low cost course, please message me in this thread.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
