nanodano's blog
Advertisement
Advertisement
How to Create an NPM Package
This is a quick guide to creating a Node.js package for npm. Full package.json documentation available from npmjs.com.
Socket.io Basics
Intro
This is the very basics of using Socket.io.
Two other articles that may be relevant:
Installation
You need socket.io
at a minimum. The others are optional.
Websocket Basics with JavaScript
Intro
To implement WebSockets, you need a client and a server. Ws.js is a library for Node.js that lets you create servers. For the client side, we'll use the native WebSocket object in the browser.
Server example
You need to install the ws
package with npm
first:
Express.js Basics
Intro
This is a quick overview of a very simple express.js app.
Installation
npm install --save express ejs
The ejs
package is for simple HTML templates.
Use auto-generated project template
Read more at https://expressjs.com/en/starter/generator.html.
2-minute Intro to p5.js
Install Lutris Gaming on Debian
This will guide through the steps to install Lutris for gaming on Debian Linux. I followed these steps using Debian 11 to play StarCraft 2 and other games.
Install VirtualBox Guest Additions in Debian
When installing Debian or other Linux distributions as a guest in VirtualBox, you should install the guest additions for better integration. This allows shared clipboard, screen resizing, and more.
Python Packaging Tutorial
This tutorial will cover setuptools
and how to package libraries and applications
for pip
, https://pypi.org, and distribution to others.
Which Linux Distro do I use?
Advertisement
Advertisement