GitHub – goldbergyoni/nodebestpractices: The Node.js best practices list (November 2022)
GitHub – goldbergyoni/nodebestpractices: The Node.js best practices list (November 2022)
The title of your web page has a length of 94 characters. Most search engines will truncate the title to 70 characters.
:white_check_mark: The Node.js best practices list (November 2022) – GitHub – goldbergyoni/nodebestpractices: The Node.js best practices list (November 2022)
The meta description of your web page has a length of 158 characters. Most search engines will truncate the meta description to 160 characters.
The webpage has a meta viewport tag set.
width=device-width
Meta Keywords of Your Web Page
Your webpage has no meta keywords tag set.
On-page SEO Keywords/Phrases & Density
Your web page has not any repeated keywords.
Your web page has H1 tag below.
» goldbergyoni/nodebestpractices
» Name already in use
» Node.js Best Practices
» Latest Best Practices and News
» Welcome! 3 Things You Ought To Know First
» 1. Project Structure Practices
» 2. Error Handling Practices
» 3. Code Style Practices
» 4. Testing And Overall Quality Practices
» 5. Going To Production Practices
» 6. Security Best Practices
» 7. Draft: Performance Best Practices
» 8. Docker Best Practices
» Milestones
Your web page has H2 tag below.
🢬 Latest commit
🢬 Table of Contents
🢬 1.1 Structure your solution by components
🢬 1.2 Layer your components, keep the web layer within its boundaries
🢬 1.3 Wrap common utilities as npm packages
🢬 1.4 Separate Express 'app' and 'server'
🢬 1.5 Use environment aware, secure and hierarchical config
🢬 2.1 Use AsyncAwait or promises for async error handling
🢬 2.2 Use only the builtin Error object
🢬 2.3 Distinguish operational vs programmer errors
🢬 2.4 Handle errors centrally, not within a middleware
🢬 2.5 Document API errors using Swagger or GraphQL
🢬 2.6 Exit the process gracefully when a stranger comes to town
🢬 2.7 Use a mature logger to increase error visibility
🢬 2.8 Test error flows using your favorite test framework
🢬 2.9 Discover errors and downtime using APM products
🢬 2.10 Catch unhandled promise rejections
🢬 2.11 Fail fast, validate arguments using a dedicated library
🢬 2.12 Always await promises before returning to avoid a partial stacktrace
🢬 3.1 Use ESLint
🢬 3.2 Node.js specific plugins
🢬 3.3 Start a Codeblock's Curly Braces on the Same Line
🢬 3.4 Separate your statements properly
🢬 3.5 Name your functions
🢬 3.6 Use naming conventions for variables, constants, functions and classes
🢬 3.7 Prefer const over let. Ditch the var
🢬 3.8 Require modules first, not inside functions
🢬 3.9 Require modules by folders, as opposed to the files directly
🢬 3.10 Use the === operator
🢬 3.11 Use Async Await, avoid callbacks
🢬 3.12 Use arrow function expressions (=>)
🢬 4.1 At the very least, write API (component) testing
🢬 4.2 Include 3 parts in each test name
🢬 4.3 Structure tests by the AAA pattern
🢬 4.4 Detect code issues with a linter
🢬 4.5 Avoid global test fixtures and seeds, add data pertest
🢬 4.6 Constantly inspect for vulnerable dependencies
🢬 4.7 Tag your tests
🢬 4.8 Check your test coverage, it helps to identify wrong test patterns
🢬 4.9 Inspect for outdated packages
🢬 4.10 Use productionlike environment for e2e testing
🢬 4.11 Refactor regularly using static analysis tools
🢬 4.12 Carefully choose your CI platform (Jenkins vs CircleCI vs Travis vs Rest of the world)
🢬 4.13 Test your middlewares in isolation
🢬 5.1. Monitoring
🢬 5.2. Increase transparency using smart logging
🢬 5.3. Delegate anything possible (e.g. gzip, SSL) to a reverse proxy
🢬 5.4. Lock dependencies
🢬 5.5. Guard process uptime using the right tool
🢬 5.6. Utilize all CPU cores
🢬 5.7. Create a ‘maintenance endpoint’
🢬 5.8. Discover errors and downtime using APM products
🢬 5.9. Make your code productionready
🢬 5.10. Measure and guard the memory usage
🢬 5.11. Get your frontend assets out of Node
🢬 5.12. Be stateless, kill your servers almost every day
🢬 5.13. Use tools that automatically detect vulnerabilities
🢬 5.14. Assign a transaction id to each log statement
🢬 5.15. Set NODE_ENV=production
🢬 5.16. Design automated, atomic and zerodowntime deployments
🢬 5.17. Use an LTS release of Node.js
🢬 5.18. Don't route logs within the app
🢬 5.19. Install your packages with npm ci
🢬 6.1. Embrace linter security rules
🢬 6.2. Limit concurrent requests using a middleware
🢬 6.3 Extract secrets from config files or use packages to encrypt them
🢬 6.4. Prevent query injection vulnerabilities with ORM/ODM libraries
🢬 6.5. Collection of generic security best practices
🢬 6.6. Adjust the HTTP response headers for enhanced security
🢬 6.7. Constantly and automatically inspect for vulnerable dependencies
🢬 6.8. Protect Users' Passwords/Secrets using bcrypt or scrypt
🢬 6.9. Escape HTML, JS and CSS output
🢬 6.10. Validate incoming JSON schemas
🢬 6.11. Support blocklisting JWTs
🢬 6.12. Prevent bruteforce attacks against authorization
🢬 6.13. Run Node.js as nonroot user
🢬 6.14. Limit payload size using a reverseproxy or a middleware
🢬 6.15. Avoid JavaScript eval statements
🢬 6.16. Prevent evil RegEx from overloading your single thread execution
🢬 6.17. Avoid module loading using a variable
🢬 6.18. Run unsafe code in a sandbox
🢬 6.19. Take extra care when working with child processes
🢬 6.20. Hide error details from clients
🢬 6.21. Configure 2FA for npm or Yarn
🢬 6.22. Modify session middleware settings
🢬 6.23. Avoid DOS attacks by explicitly setting when a process should crash
🢬 6.24. Prevent unsafe redirects
🢬 6.25. Avoid publishing secrets to the npm registry
🢬 Our contributors are working on this section. Would you like to join?
🢬 7.1. Don't block the event loop
🢬 7.2. Prefer native JS methods over userland utils like Lodash
🢬 8.1 Use multistage builds for leaner and more secure Docker images
🢬 8.2. Bootstrap using node command, avoid npm start
🢬 8.3. Let the Docker runtime handle replication and uptime
🢬 8.4. Use .dockerignore to prevent leaking secrets
🢬 8.5. Cleanup dependencies before production
🢬 8.6. Shutdown smartly and gracefully
🢬 8.7. Set memory limits using both Docker and v8
🢬 8.8. Plan for efficient caching
🢬 8.9. Use explicit image reference, avoid latest tag
🢬 8.10. Prefer smaller Docker base images
🢬 8.11. Cleanout buildtime secrets, avoid secrets in args
🢬 8.12. Scan images for multi layers of vulnerabilities
🢬 8.13 Clean NODE_MODULE cache
🢬 8.14. Generic Docker practices
🢬 8.15. Lint your Dockerfile
🢬 Translations
🢬 Steering Committee
🢬 Contributing
🢬 Contributors ✨
🢬 Contributors 219
Your web page has H3 tag below.
🢭 Code Example
🢭 Code example
🢭 3.6 Code Example
🢭 3.9 Code example
🢭 3.10 Code example
🢭 Example Dockerfile for multistage builds
🢭 Completed translations
🢭 Translations in progress
🢭 Steering Committee Emeriti
🢭 Footer navigation
Your web page has H4 tag below.
› Launching GitHub Desktop
› Launching GitHub Desktop
› Launching Xcode
› Launching Visual Studio Code
Google Search Results Preview
https://github.com/goldbergyoni/nodebestpractices
GitHub – goldbergyoni/nodebestpractices: The Node.js best practices list (November 2022)
:white_check_mark: The Node.js best practices list (November 2022) - GitHub - goldbergyoni/nodebestpractices: The Node.js best practices list (November 2022) . . .
Good, your website has Robots.txt file!
https://github.com/robots.txt
Your website Favicon file.
You should include Sitemap.xml file!
https://github.com/sitemap.xml
2 internal links are found on your web page.
71 external links are found on your web page.
70 broken links are found on your web page.
Image and Image ALT Status
We found 395 images on your web page, AND
336 "ALT" attributes are found empty or missing on your web page
Your site loading time is around 0.25280904769897 seconds and the average loading speed of any website is 5 seconds usually.
Good, the URL of your web page looks SEO friendly.
https://github.com/goldbergyoni/nodebestpractices
Good, HTTPS or SSL is enabled on your site.
https://github.com/goldbergyoni/nodebestpractices
Web Page Size : 695551 Bytes
Code Size : 619746 Bytes
Text Size : 75805 Bytes
Text to HTML Ratio : 10.90%
Words on Page : 13106 words
Social media links of your website.