Personal Homebrew tap for development tools and libraries.
# Add tap
brew tap akiomik/dev
# Install packages
brew install safe-chainSecurity tool by Aikido Security that wraps package managers (npm, yarn, pnpm, etc.) for secure dependency management.
📦 npm package | 🔗 GitHub repository
Available commands after installation:
safe-chain- Main commandaikido-npm,aikido-npx- npm/npx wrappersaikido-yarn- yarn wrapperaikido-pnpm,aikido-pnpx- pnpm wrappersaikido-bun,aikido-bunx- bun wrappersaikido-uv- uv wrapperaikido-pip,aikido-pip3- pip wrappersaikido-python,aikido-python3- python wrappers
High-performance WebSocket and HTTP library for C++. Provides uWebSockets as a dynamic library with optional SSL support.
Build options:
# Install with SSL support (default)
brew install libuws
# Install without SSL support
HOMEBREW_LIBUWS_WITHOUT_OPENSSL=1 brew install libuwsUsage:
#include <uWebSockets/App.h>
// HTTP server
auto app = uWS::App().listen(3000, [](auto *token) {
if (token) {
std::cout << "Listening on port 3000" << std::endl;
}
}).run();
// HTTPS server (when built with SSL support)
auto ssl_app = uWS::SSLApp({
.key_file_name = "key.pem",
.cert_file_name = "cert.pem"
}).listen(3001, [](auto *token) {
// ...
}).run();This repository is licensed under the Apache License 2.0.
Individual packages have their own licenses. See each Formula file for package-specific license information.