Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

My project: Postgres for Node Developers

A topic by Less Boring Games created Jun 09, 2017 Views: 250 Replies: 3
Viewing posts 1 to 3
Host

Hello all!

Since my game project will next need a database layer, I figured a good project for this weekend would be a dive into getting Postgres set up with Node.  I'll then attempt to use this setup in the game.  If things go well, this could turn into a little info product.

My Trello board of tasks is here: https://trello.com/b/K9ERlTep/...

Host

Progress is coming along quite nicely.  I've gotten the base project set up, packages installed, the database installed, and I can make queries over http.  It's good that I'm able to focus just on this part because I'm finding lots of good ways to clean up a standard all over the place Node Express app, and have a system for settings, using a testing database in unit tests, and separating out controllers from routes.  I also wrote a tiny migration tool that I think will work well too.

All this will be a whole lot lighter weight than something like Django or Rails, and I think if I'm just doing APIs and sockets, I won't be losing much.  I think this will probably make a decent tutorial code base as well!

If none of those words made sense, I'm making progress is all.  I should figure out a way to show something visual with this before the end of the weekend.

How are you thinking of visualizing it? 

Host (1 edit)

I am fairly happy with how the code is working, and it will be a good base to build on.