We would love for you to contribute to Angular and help make it even better than it is today! As a contributor, here are the guidelines we would like you to follow:
Check => https://gist.github.com/nicobytes/7fb83f8feab37ef7b31923cdeb4e20c8 https://app.quickdatabasediagrams.com/#/
// src/tasks/entities/user.entity.ts
import { Entity, Column, PrimaryGeneratedColumn } from 'typeorm';
@Entity()
export class User{Elegir el issue que quieres traducir en la board oficial ⇒ https://github.com/angular-hispano/angular/projects/2
Preparar tu entorno, para eso debes descargar el repo y luego correr pruebas unitarias y de integración para asegurar que todo este en funcionamiento antes de iniciar.
git clone your-fork
cd angular
yarn
This file contains hidden or 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
| const data = [1,3,4,5]; | |
| const rta = data.reduce((counter, item) => counter + item, 0); | |
| console.log(rta); | |
| const orders = [ | |
| { | |
| customerName: 'Nicolas', | |
| total: 60, | |
| delivered: true, | |
| }, |
This file contains hidden or 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
| const orders = [ | |
| { | |
| customerName: 'Nicolas', | |
| total: 60, | |
| delivered: true, | |
| }, | |
| { | |
| customerName: 'Zulema', | |
| total: 120, | |
| delivered: false, |