Update node-backends.md

This commit is contained in:
Justin Woo 2018-08-14 09:47:13 +03:00 committed by GitHub
parent 9d39b388f3
commit 01d4b333c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,3 +7,9 @@ I do not use any libraries to do Node backend development for work, as I have no
I have a library for relatively simple Express usage, which can be extended with normal Express middleware as needed. My vidtracker project uses it to prepare the backend, though there are many other techniques involved here <https://github.com/justinwoo/vidtracker/blob/master/src/Main.purs>
See the repo at <https://github.com/justinwoo/purescript-makkori>
## What about my databases???
Looking on Pursuit alone, you'll find <https://github.com/epost/purescript-node-postgres> is actively maintained. I use node-sqlite3 for many of my projects and keep it fairly maintained, though the binding itself is completely minimal: <https://github.com/justinwoo/purescript-node-sqlite3>
Overall, you should learn how to use FFI so you can make wrappers around things you need and improve their types overall.