barqex
v1.2.41
Published
A lightweight full-stack JavaScript framework
Maintainers
Readme
Barqex
A lightweight full-stack JavaScript framework.
Getting Started
Local Development / Testing
If you're developing or testing Barqex locally:
# Clone the repository
git clone https://github.com/hamroun/barqex.git
cd barqex
# Install dependencies
npm install
# Link the package globally for local testing
npm link
# Now you can use the CLI
barqex create my-first-appUsing the Published Package
# Using npx (no installation needed)
npx barqex create my-app
# Or install globally
npm install -g barqex
barqex create my-appTroubleshooting
If you encounter issues with the npx command, try these steps:
Run Directly with Node:
node ./bin/cli.js create my-appCheck if the Package is Published:
npm view barqex versionTry a Specific Version:
npx [email protected] create my-appDebug Mode:
DEBUG=* npx barqex create my-app
Publishing the Package
For maintainers:
# Increment version
npm version patch
# Publish to npm
npm publish
# Test the published version
npx barqex@latest create test-appDocumentation
Visit barqex.io for full documentation.
