npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

create-gbit-app

v1.0.2

Published

CLI para criar aplicações completas com Gbit Framework - Backend, Frontend e Smart Contracts

Readme

🚀 Gbit Framework

CLI oficial do Gbit Framework para criar aplicações completas — Backend, Frontend e Smart Contracts — prontas para produção.

Gbit Framework NPM Version License

📦 Instalação

Uso Direto (Recomendado)

npx create-gbit-app@Latest meu-projeto

Instalação Global

npm install -g create-gbit-app
create-gbit-app meu-projeto

🎯 Características

  • Backend Completo (Node.js, Python)
  • Frontend Moderno (React, Next.js, Vite)
  • Smart Contracts (Solidity, Vyper)
  • Banco de Dados (PostgreSQL, SQLite, MongoDB)
  • WebSockets (Socket.io, ws)
  • Docker & Docker Compose
  • CI/CD Ready (GitHub Actions, Vercel)
  • Temas Profissionais (Gbit Dark, Light, Minimal)
  • TypeScript Support
  • ESLint & Prettier

🛠️ Estrutura Gerada

Projeto Full Stack Completo

meu-projeto/
├── backend/
│   ├── src/
│   │   ├── routes/
│   │   ├── controllers/
│   │   ├── models/
│   │   ├── services/
│   │   └── utils/
│   ├── config/
│   ├── .env
│   ├── package.json
│   └── README.md
│
├── frontend/
│   ├── public/
│   ├── src/
│   │   ├── components/
│   │   ├── pages/
│   │   ├── services/
│   │   ├── styles/
│   │   └── assets/
│   ├── package.json
│   └── README.md
│
├── contracts/
│   ├── contracts/
│   │   └── GbitToken.sol
│   ├── scripts/
│   │   ├── deploy.js
│   │   └── verify.js
│   ├── build/abi/
│   ├── hardhat.config.js
│   └── README.md
│
├── database/
│   ├── schema.sql
│   ├── migrations/
│   ├── seeds/
│   └── README.md
│
├── docker/
│   ├── Dockerfile
│   ├── docker-compose.yml
│   └── .dockerignore
│
├── .github/
│   └── workflows/
│       └── ci.yml
│
├── .gitignore
├── vercel.json
└── README.md

📋 Menu Interativo

Ao executar o comando, você será guiado por um menu interativo:

🚀 Bem-vindo ao Create Gbit App (Gbit Framework)
Crie aplicações completas — Backend, Frontend e Smart Contracts — prontas para produção.

1️⃣  Nome do projeto: my-enterprise-app
2️⃣  Incluir backend? (Y/n)
3️⃣  Linguagem do backend? (Node.js / Python)
4️⃣  Framework backend? (Express / NestJS / Flask / FastAPI)
5️⃣  Incluir WebSockets? (Y/n)
6️⃣  Base de dados? (SQLite / PostgreSQL / MongoDB / Nenhum)
7️⃣  Incluir frontend? (Y/n)
8️⃣  Linguagem do frontend? (JavaScript / TypeScript)
9️⃣  Framework frontend? (React / Next.js / Vite)
🔟 Incluir smart contracts? (Y/n)
1️⃣1️⃣ Linguagem dos smart contracts? (Solidity / Vyper)
1️⃣2️⃣ Gerar scripts de deploy e ABI automaticamente? (Y/n)
1️⃣3️⃣ Tema inicial do frontend? (Gbit Dark / Gbit Light / Minimal)
1️⃣4️⃣ Adicionar Docker e Docker Compose? (Y/n)
1️⃣5️⃣ Incluir configuração Git + Vercel + README automático? (Y/n)
1️⃣6️⃣ Criar estrutura completa ou parcial?
     → Projeto Completo (Full Stack)
     → Somente Backend
     → Somente Frontend
     → Somente Smart Contracts

🚀 Início Rápido

1. Criar Projeto

npx create-gbit-app@Latest meu-app
cd meu-app

2. Instalar Dependências

# Backend
cd backend && npm install

# Frontend
cd ../frontend && npm install

# Smart Contracts (se incluído)
cd ../contracts && npm install

3. Configurar Variáveis de Ambiente

# Backend
cp backend/.env.example backend/.env

# Frontend
cp frontend/.env.example frontend/.env

4. Executar Projeto

# Com Docker (recomendado)
docker-compose up

# Ou manualmente
# Terminal 1 - Backend
cd backend && npm run dev

# Terminal 2 - Frontend
cd frontend && npm run dev

Github

# Clone o repositório
git clone https://github.com/Gislaine-programadora/Flamework-gbit.git

# Instale as dependências
npm install

npx create-gbit-app@latest "novo-projeto"


## 🤝 Contribuindo

Contribuições são bem-vindas! Sinta-se à vontade para abrir issues e pull requests.

1. Fork o projeto
2. Crie sua feature branch (`git checkout -b feature/AmazingFeature`)
3. Commit suas mudanças (`git commit -m 'Add some AmazingFeature'`)
4. Push para a branch (`git push origin feature/AmazingFeature`)
5. Abra um Pull Request

## 📄 Licença

Este projeto está sob a licença MIT. Veja o arquivo [LICENSE](LICENSE) para mais detalhes.

## 👥 Autores

- **Gbit Team** - [GitHub](https://github.com/Gislaine-programadora)

## 🌟 Suporte

Se este projeto foi útil, considere dar uma ⭐️ no GitHub!

## 📞 Contato

- Website: [gbitframework.com](https://gislaine-programadora.github.io/flamework-gbit/)
- Email: [email protected]
- GitHub: [@Gislaine-programadora](https://github.com/Gislaine-programadora)

---

**Feito com ❤️ pela comunidade Gbit Framework**