├── .gitignore ├── Crypto └── README.md ├── Logic └── README.md ├── Math └── README.md ├── PROJETO.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | 6 | # Runtime data 7 | pids 8 | *.pid 9 | *.seed 10 | 11 | # Directory for instrumented libs generated by jscoverage/JSCover 12 | lib-cov 13 | 14 | # Coverage directory used by tools like istanbul 15 | coverage 16 | 17 | # nyc test coverage 18 | .nyc_output 19 | 20 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 21 | .grunt 22 | 23 | # node-waf configuration 24 | .lock-wscript 25 | 26 | # Compiled binary addons (http://nodejs.org/api/addons.html) 27 | build/Release 28 | 29 | # Dependency directories 30 | node_modules 31 | jspm_packages 32 | 33 | # Optional npm cache directory 34 | .npm 35 | 36 | # Optional REPL history 37 | .node_repl_history 38 | -------------------------------------------------------------------------------- /Crypto/README.md: -------------------------------------------------------------------------------- 1 | # JavaScript - Criptografia 2 | 3 | ### Vamos postar alguns links onde vocês podem acessar para que possam estudar e mergulhar mais e mais no assunto. 4 | 5 | * https://www.youtube.com/watch?v=PS7z7InvBN8 6 | 7 | * https://www.youtube.com/watch?v=C7oK-Y1JlCs&t=269s 8 | 9 | * http://lollyrock.com/articles/nodejs-encryption/ 10 | -------------------------------------------------------------------------------- /Logic/README.md: -------------------------------------------------------------------------------- 1 | # JavaScript - Lógica 2 | -------------------------------------------------------------------------------- /Math/README.md: -------------------------------------------------------------------------------- 1 | # JavaScript - Matemática 2 | -------------------------------------------------------------------------------- /PROJETO.md: -------------------------------------------------------------------------------- 1 | # Autentica o API Rest com NodeJS 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Guia-de-Estudos-JavaScript 2 | Guia de estudos para alunos de JavaScript 3 | --------------------------------------------------------------------------------