1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-12 10:52:47 +00:00

working on posts

This commit is contained in:
2016-08-18 03:50:20 +00:00
parent 00f562dfb6
commit 70807c7a45
12 changed files with 427 additions and 288 deletions

View File

@@ -1,5 +1,5 @@
## First Blog Post
# First Blog Post
My first blog post introduces this website and the motives behind it. I discuss setting up a Node.js webserver for the first time and my experiences with it thus far.
@@ -7,6 +7,8 @@ I have had this site up for awhile now, but I've decided to turn it into a blog
I already had previous experience with SQL databases and other server side scripting languages such as PHP and JSP, but I heard good things about Node.js and I wanted to familiarize myself with a NoSQL database. At first, Node.js was a bit confusing to work with and figure everything out. Now that I am starting to get the hang of Node and MongoDB I am enjoying them more and more.
---
## Setting up Node.js for the first time
There are multiple ways to get up and running with Node. Node uses "modules" and has some that are already built in. Others need to be installed with the NPM package manager, which will become your friend. I am going focus on installing Node.js with Express, which is a web framework for Node.js.