Thanks to visit codestin.com
Credit goes to github.com

Skip to content

akiomik/homebrew-dev

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

homebrew-dev

Personal Homebrew tap for development tools and libraries.

Usage

# Add tap
brew tap akiomik/dev

# Install packages
brew install safe-chain

Available Packages

safe-chain

Security 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 command
  • aikido-npm, aikido-npx - npm/npx wrappers
  • aikido-yarn - yarn wrapper
  • aikido-pnpm, aikido-pnpx - pnpm wrappers
  • aikido-bun, aikido-bunx - bun wrappers
  • aikido-uv - uv wrapper
  • aikido-pip, aikido-pip3 - pip wrappers
  • aikido-python, aikido-python3 - python wrappers

libuws

High-performance WebSocket and HTTP library for C++. Provides uWebSockets as a dynamic library with optional SSL support.

🔗 GitHub repository

Build options:

# Install with SSL support (default)
brew install libuws

# Install without SSL support
HOMEBREW_LIBUWS_WITHOUT_OPENSSL=1 brew install libuws

Usage:

#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();

License

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.

About

Personal Homebrew tap for development tools and libraries.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

  •  

Packages

No packages published

Languages