LYCEUMPowered by LyceumSys
Introduction to React Hooks
Featured
Frontend

Andy Author

17 Aug 2026 · 1 min read

Introduction to React Hooks

React Hooks let you use state and lifecycle features inside function components, which is why class components have quietly disappeared from most codebases. We cover useState for local state, useEffe…

React
JavaScript

0

2,143 views

Getting Started with Node.js
Featured
Web Development

Andy Author

19 Aug 2026 · 1 min read

Getting Started with Node.js

Node.js lets you run JavaScript on the server, and the fastest way to understand it is to build something small. In this guide we set up a project, install dependencies with npm, and write an HTTP ser…

Node.js
JavaScript

0

1,286 views

Securing an Express API: The Baseline
Web Development

Andy Author

3 Aug 2026 · 1 min read

Securing an Express API: The Baseline

Before any clever security work, there is a baseline that takes an afternoon and blocks most opportunistic attacks. Helmet sets sensible response headers. A CORS allowlist stops arbitrary origins fro…

Security
Node.js

0

998 views

Writing Tests You Will Not Delete Next Month
Programming

Andy Author

8 Aug 2026 · 1 min read

Writing Tests You Will Not Delete Next Month

Most abandoned test suites were not badly written — they were coupled to implementation details that changed. A test that breaks every time you rename a private function is a liability. We look at te…

Testing
JavaScript

0

640 views

Dockerising a Node API from Scratch
DevOps

Maya Okonkwo

12 Aug 2026 · 1 min read

Dockerising a Node API from Scratch

'It works on my machine' is a container-shaped problem. We build an image for an Express API one instruction at a time and explain what each layer costs. Multi-stage builds keep compilers out of the…

Docker
Node.js

0

1,540 views

Postgres Indexes: When They Help and When They Hurt
Data Science

Maya Okonkwo

15 Aug 2026 · 1 min read

Postgres Indexes: When They Help and When They Hurt

An index is a trade: faster reads in exchange for slower writes and more disk. Adding one to every column is a reliable way to make an application slower overall. We start with EXPLAIN ANALYZE and le…

SQL
Performance

0

862 views