Last updated
A quick update on the Sam’s Teach Yourself Node.js Book that I’ve been authoring. The book is going through final edits now. I hadn’t realised how many different rounds of editing there would be! Our designer Mark has designed a brochure site for the book and you can get a sneak peak of what’s included by downloading the code examples from GitHub. The publishers Pearson Education have put a release date of 1st September on the book and you can pre-order from Amazon US or Amazon UK.
We are using Node.js at pebble {code} as part of the online gaming startup we are working on and loving it!
Have an update or suggestion for this article? You can edit it here and send me a pull request.
Using HashiCorp Vault with LDAP
How to use HashiCorp Vault to setup an LDAP backed secret store with read-only access for users in groups and read-write access for specific users
Linux and Unix xargs command tutorial with examples
Tutorial on using xargs, a UNIX and Linux command for building and executing command lines from standard input. Examples of cutting by character, byte position, cutting based on delimiter and how to modify the output delimiter.
Copy a file in Go
How to copy a file in Go. The ioutil package does not offer a shorthand way of copying a file. Instead the os package should be used.