admin 管理员组

文章数量: 1086019

I am learning node.js, and would like to try building a blog on the platform. Do you know of any good tutorials that show you, step-by-step, how to build a blogging app on node? I have seen one by Nettuts, but it doesn't explain a full solution, with databases an the like. So are there any good tutorials? I do not mind if it is text or video, as long as it is descriptive and helpful.

Thanks for any remendations!

I am learning node.js, and would like to try building a blog on the platform. Do you know of any good tutorials that show you, step-by-step, how to build a blogging app on node? I have seen one by Nettuts, but it doesn't explain a full solution, with databases an the like. So are there any good tutorials? I do not mind if it is text or video, as long as it is descriptive and helpful.

Thanks for any remendations!

Share Improve this question edited Nov 27, 2013 at 22:39 Ankit Ranjan 1141 silver badge12 bronze badges asked Nov 27, 2013 at 22:09 user2800761user2800761 2,3352 gold badges15 silver badges8 bronze badges 6
  • 7 Questions asking us to remend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, when you encounter a problem, describe the problem and what has been done so far to solve it. – John Dvorak Commented Nov 27, 2013 at 22:16
  • @PeterLyons the link is dead – pixel 67 Commented Mar 5, 2014 at 9:07
  • @PeterLyons I'm looking to host my node app on a VPS, any thoughts on deploying a node blog to a linux server? – pixel 67 Commented Mar 5, 2014 at 9:13
  • @pixel67 see my answer below. My blog repo includes automated deployment with Ansible/Vagrant/Bash. – Peter Lyons Commented Mar 5, 2014 at 15:15
  • @PeterLyons thanks mate, I tried signing up to be notified of new blog posts on your site, but your reader is not working. – pixel 67 Commented Mar 7, 2014 at 14:19
 |  Show 1 more ment

3 Answers 3

Reset to default 4

My blog is written in node.js and express.js. I uses just a simple git repo on the filesystem for the post content. It is open source at github./focusaurus/peterlyons.. Feel free to look around if you find it helpful and shoot me follow-up questions. It is no-frills but does have a basic post editor with preview and allows me to add custom markup processing logic.

There is a fully automated deployment solution in there coded in Ansible and bash that I use to deploy it to both a Vagrant-based staging VM and a production digital ocean droplet.

You can try ExpressJS

As an ExpressJS intermediate, I can understand the question coz even I coudnt find an expressjs tutorial that "just" works and is minimal.

You can try this http://cwbuecheler./web/tutorials/2013/node-express-mongo/ tutorial or the hack sparrow express tut mentioned by Wyatt

If you are pletely new to MVC web frameworks, its gonna take a lot of patience. Since I worked on Django befor, I was able to stand up n run pretty quickly with ExpressJS

So even if the tutorial doesnt make sense there's plenty of other resources likes docs, google and StackOverFlow :D

Node is all about using what is available in the ecosystem. npm is great and sets node apart from other environments. You could use, for example, Wheat.

That said, you could check out this article which is pretty old, but good.

Alternatively, I think the Hack Sparrow Express Tutorial would have a lot of valuable concepts for you, especially when coupled with his posts on Mongo.

本文标签: javascriptTutorials for a blogging application in nodejsStack Overflow