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 🙏

© 2024 – Pkg Stats / Ryan Hefner

vss-express

v1.1.0

Published

To create a complete project, just run: ``` npx vss-express create ```

Downloads

42

Readme

Complete Template for Express + Prisma + TypeScript (portguês abaixo)

To create a complete project, just run:

npx vss-express create

Execution

This behavior refers to the command without any parameters (default).


⚠️ Don't worry, you can change all of this! ⚠️

⚠️ At the end, there's an example of what the output will look like ⚠️


  1. A subfolder named express will be created in the current directory.

  2. A project will be initialized (creation of package.json and addition of basic commands).

  3. The src folder will be created.

  4. Express and the necessary types will be installed.

  5. The app.ts file will be created, fully configured and ready to run.

  6. Routing will be added.

  7. Prisma and the database will be added.

  8. Ensures the secure creation of a Prisma client instance.


Want more control? Here are the available parameters

  • -o [name]: Defines the name of the output folder (must be followed by the name).

  • --js: Use JavaScript instead of TypeScript.

  • --no-prisma: Do not use Prisma as ORM.

  • --current-dir: Specifies that the project should be created in the current folder, without creating a new folder.

  • --config: Creates a prompt to manually configure everything with a more user-friendly interface.

  • --stock: Creates a minimalist project (only express and basic app); This option keeps TypeScript, use --js to switch.

  • --no-middlewares: Creates the project without using middlewares.

  • --code: Opens the project in Visual Studio Code.

  • For a quick review: -h or --help


Default values

Here are the values used if the parameter is not provided:

  • -o: express

  • --js: OFF (use TypeScript)

  • --no-prisma: OFF (use Prisma)

  • --current-dir: OFF (creates a subfolder with the value of -o)

  • --config: OFF

  • --stock: OFF (creates the API completely)

  • --no-middlewares: OFF (uses middlewares)

  • --code: OFF (does not open with VSCode)

Template completo para Express + Prisma + Typescript

Para criar um projeto completo basta rodar:

npx vss-express create

Execução

Esse comportamento se refere ao comando sem nenhum parâmetro (default).


⚠️ Fique tranquilo, pois você poderá alterar tudo isso! ⚠️

⚠️ No final, há um exemplo de como será a saída ⚠️


  1. Será criada uma subpasta no diretório atual chamada express.

  2. Um projeto será iniciado (criação do package.json e adição dos comandos básicos).

  3. A pasta src será criada.

  4. Será instalado o express e os devidos tipos.

  5. O arquivo app.ts será criado, com tudo configurado e pronto para rodar.

  6. Será adicionado o roteamento.

  7. Será adicionado Prisma e o banco de dados.

  8. Garante a criação segura de uma instância do prisma client.


Quer mais controle? Aqui estão os parâmetros disponíveis

  • -o [nome]: Define o nome da pasta de saída (deve ser seguido do nome).

  • --js: Usar Javascript, ao invés de Typescript.

  • --no-prisma: Não usar o Prisma como ORM.

  • --current-dir: Define que o projeto deve ser criado na pasta atual, sem criar uma nova pasta.

  • --config: Cria um prompt para configurar tudo de forma manual e com uma interface mais agradável.

  • --stock: Cria de forma minimalista (apenas o express e app básico); Essa opção mantém o Typescript, use --js para mudar.

  • --no-middlewares: Cria o projeto, mas não usa middlewares.

  • --code: Abre o projeto no Visual Studio Code.

  • Para uma revisão rápida: -h ou --help


Valores padrão

Segue os valores usados caso o parâmetro não seja fornecido:

  • -o: express

  • --js: OFF (usar TypeScript)

  • --no-prisma: OFF (usar Prisma)

  • --current-dir: OFF (cria uma subpasta com o valor de -o)

  • --config: OFF

  • --stock: OFF (cria a API de forma completa)

  • --no-middlewares: OFF (usa middlewares)

  • --code: OFF (não abrir com VSCode)


Default exit

Command: npx vss-express create

Exit:

express/
│
├── node_modules/
│
├── prisma/
│   ├── migrations/
│   └── schema.prisma
│
├── src/
│   ├── lib/
│   │   └── db.ts
│   │
│   ├── routes/
│   │   └── index.ts
│   │
│   └── app.ts
│
├── .env
├── .gitignore
├── package.json
├── tsconfig.json

Command: npx vss-express create -o MyProject --js --stock

  • Output folder name: MyProject
  • Use JavaScript
  • Do not use middleware or prisma

Exit:

MyProject/
│
├── node_modules/
│
├── src/
│   │
│   └── app.js
│
├── package.json