.gitignore 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. ##############################
  2. ## Folders ##
  3. ##############################
  4. manual
  5. .idea
  6. mongodb.js
  7. # Created by https://www.gitignore.io/api/node
  8. ### Node ###
  9. # Logs
  10. logs
  11. *.log
  12. npm-debug.log*
  13. yarn-debug.log*
  14. yarn-error.log*
  15. # Runtime data
  16. pids
  17. *.pid
  18. *.seed
  19. *.pid.lock
  20. # Directory for instrumented libs generated by jscoverage/JSCover
  21. lib-cov
  22. # Coverage directory used by tools like istanbul
  23. coverage
  24. # nyc test coverage
  25. .nyc_output
  26. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  27. .grunt
  28. # Bower dependency directory (https://bower.io/)
  29. bower_components
  30. # node-waf configuration
  31. .lock-wscript
  32. # Compiled binary addons (https://nodejs.org/api/addons.html)
  33. build/Release
  34. # Dependency directories
  35. node_modules/
  36. jspm_packages/
  37. # TypeScript v1 declaration files
  38. typings/
  39. # Optional npm cache directory
  40. .npm
  41. # Optional eslint cache
  42. .eslintcache
  43. # Optional REPL history
  44. .node_repl_history
  45. # Output of 'npm pack'
  46. *.tgz
  47. # Yarn Integrity file
  48. .yarn-integrity
  49. # dotenv environment variables file
  50. .env
  51. # parcel-bundler cache (https://parceljs.org/)
  52. .cache
  53. # next.js build output
  54. .next
  55. # nuxt.js build output
  56. .nuxt
  57. # vuepress build output
  58. .vuepress/dist
  59. # Serverless directories
  60. .serverless