# Gerenciamento de Versões do Node.js
## 1. Baixar LTS
- Acesse [node.js](https://nodejs.org)
## 2. Verificar Vulnerabilidades
```bash
npx is-my-node-vulnerable
### Docker Hub - PostgreSQL Image
[Bitnami PostgreSQL](https://hub.docker.com/r/bitnami/postgresql)
---
### Como criar e rodar o container:
```bash
docker run --name nome-app \
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useEffect, useState } from 'react' | |
export function NotFound() { | |
const [selectedLetters, setSelectedLetters] = useState([]) | |
useEffect(() => { | |
const letterSequence = [ | |
{ class: 'one', delay: 1500 }, | |
{ class: 'two', delay: 500 }, | |
{ class: 'three', delay: 500 }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx" | |
}, | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.fontSize": 16, | |
"javascript.suggest.autoImports": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"editor.rulers": [ | |
80, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nano ~/.zshrc - entrar | |
control o + enter + control x - salvar | sair | |
source ~/.zshrc - nova configuração no terminal | |
icons: ಠ - ❯ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"extends": ["@rocketseat/eslint-config/react"], | |
"plugins": ["simple-import-sort"], | |
"rules": { | |
"simple-import-sort/imports": "error" | |
} | |
} |