New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

bryk

Package Overview
Dependencies
Maintainers
1
Versions
101
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bryk

CLI tool for Bryk framework

latest
npmnpm
Version
2.0.102
Version published
Weekly downloads
109
4.81%
Maintainers
1
Weekly downloads
 
Created
Source

Bryk CLI

Command-line tool for creating and managing Bryk Framework projects.

Installation

npm i -g bryk

Usage

Create a new project

# Create project in new directory
bryk init my-project

# Create project in current directory
bryk init

Available Commands

  • bryk init [project-name] - Initialize a new Bryk project
    • --force - Overwrite existing directory if it exists

What it creates

The CLI creates a complete Bryk project with:

  • Core Framework: bryk-core - The main framework
  • Bundle Components: bryk-bundle - UI components and services
  • Development Setup: Webpack configuration for development and production
  • Example Application: Complete working example with screens and components
  • Build System: Production-ready build configuration

Project Structure

my-project/
├── src/
│   ├── app.js              # Main application
│   ├── screens/            # Application screens
│   ├── components/         # Reusable components
│   └── services/           # API services
├── translations/           # Translation files
├── index.html              # Main HTML file
├── package.json            # Dependencies
├── webpack.config.js       # Build configuration
└── serve.json              # Production server config

Development

# Start development server
npm run dev

# Build for production
npm run build

# Serve production build
npm run serve:prod

Dependencies

The CLI creates projects that use:

  • bryk-core - Core framework functionality
  • bryk-bundle - UI components and services
  • Webpack - Build system
  • Babel - JavaScript transpilation

License

ISC

Keywords

bryk

FAQs

Package last updated on 19 Jan 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts