Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eduardosampaio/curso-angular-cod3r
projeto meat app do curso da cod3r
https://github.com/eduardosampaio/curso-angular-cod3r
Last synced: about 1 month ago
JSON representation
projeto meat app do curso da cod3r
- Host: GitHub
- URL: https://github.com/eduardosampaio/curso-angular-cod3r
- Owner: EduardoSampaio
- Created: 2020-06-19T20:39:39.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-01T20:56:31.000Z (about 2 years ago)
- Last Synced: 2023-03-07T02:43:26.212Z (almost 2 years ago)
- Language: TypeScript
- Size: 4.08 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Meat - Angular App Starter
## 1. Passos para começar
### Clonando o Repositório
`git clone https://github.com/cod3rcursos/meat-app-starter.git`
### Instalando as Dependências
`npm install`
### Inicializando o Servidor
`ng serve` ou `npm start`
## 2. Iniciando o Backend
### Instalando o json-server
`npm install -g json-server`
### Iniciando o serviço (raiz da aplicação)
`json-server db.json`
## Goodies
Expressões regulares usadas na validação de formulários
### Email Regex
`/^(([^<>()\[\]\.,;:\s@\"]+(\.[^<>()\[\]\.,;:\s@\"]+)*)|(\".+\"))@(([^<>()[\]\.,;:\s@\"]+\.)+[^<>()[\]\.,;:\s@\"]{2,})$/i`
### Number Regex
`/^[0-9]*$/`