Sunday, May 22, 2022

node.js trigger gc

 javascript - How to request the Garbage Collector in node.js to run? - Stack Overflow

If you launch the node process with the --expose-gc flag, you can then call global.gc() to force node to run garbage collection.

try {
  if (global.gc) {global.gc();}
} catch (e) {
  console.log("`node --expose-gc index.js`");
  process.exit();
}



GitPlanet - Discover interesting open source projects (Chess)

GitPlanet - Discover interesting open source projects

"directory" All CategoriesGames → chess

Top 69 chess open source projects - GitPlanet

vs.

"search"

Search open source project names contain chess - GitPlanet


sfleischman105/Pleco: A Rust-based re-write of the Stockfish Chess Engine

Pleco is a chess Engine & Library derived from Stockfish, written entirely in Rust. (MIT license)


ChizhovVadim/CounterGo: UCI chess engine (golang)