Skip to content

correct lang code for es and zh-cn #1934

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion es/3x/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: api
version: 3x
title: Express 3.x - Referencia de API
description: Access the API reference for Express.js version 3.x, noting that this version is end-of-life and no longer maintained - includes details on modules and methods.
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/4x/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: api
version: 4x
title: Express 4.x - Referencia de API
description: Access the API reference for Express.js 4.x, detailing all modules, methods, and properties for building web applications with this version.
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/5x/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: api
version: 5x
title: Express 5.x - Referencia de API
description: Access the API reference for Express.js 5.x, detailing all modules, methods, and properties for building web applications with this latest version.
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/advanced/best-practice-performance.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: Mejores prácticas de rendimiento cuando se utiliza Express en producción
description: Discover performance and reliability best practices for Express apps in production, covering code optimizations and environment setups for optimal performance.
menu: advanced
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/advanced/best-practice-security.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: Mejores prácticas de seguridad para Express en producción
description: Discover crucial security best practices for Express apps in production, including using TLS, input validation, secure cookies, and preventing vulnerabilities.
menu: advanced
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/advanced/developing-template-engines.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: Desarrollo de motores de plantilla para Express
description: Learn how to develop custom template engines for Express.js using app.engine(), with examples on creating and integrating your own template rendering logic.
menu: advanced
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/advanced/healthcheck-graceful-shutdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: Health Checks and Graceful Shutdown
description: Learn how to implement health checks and graceful shutdown in Express apps to enhance reliability, manage deployments, and integrate with load balancers like Kubernetes.
menu: advanced
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/advanced/security-updates.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: Actualizaciones de seguridad de Express
description: Review the latest security updates and patches for Express.js, including detailed vulnerability lists for different versions to help maintain a secure application.
menu: advanced
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: api
version: 5x
title: Express 5.x - Referencia de API
description: Access the API reference for Express.js detailing all modules, methods, and properties for building web applications with this version.
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/changelog/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: page
title: Express changelog
description: Stay updated with the release changelog for Express.js, detailing new features, bug fixes, and important changes across versions.
lang: en
lang: es
sitemap: false
redirect_from:
- " "
Expand Down
2 changes: 1 addition & 1 deletion es/guide/behind-proxies.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: Express detrás de proxies
description: Learn how to configure Express.js applications to work correctly behind reverse proxies, including using the trust proxy setting to handle client IP addresses.
menu: guide
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/guide/database-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: Integración de la base de datos de Express
description: Discover how to integrate various databases with Express.js applications, including setup examples for MongoDB, MySQL, PostgreSQL, and more.
menu: guide
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/guide/debugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: Depuración de Express
description: Learn how to enable and use debugging logs in Express.js applications by setting the DEBUG environment variable for enhanced troubleshooting.
menu: guide
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/guide/error-handling.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: Manejo de errores de Express
description: Understand how Express.js handles errors in synchronous and asynchronous code, and learn to implement custom error handling middleware for your applications.
menu: guide
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/guide/migrating-4.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: Migración a Express 4
description: A guide to migrating your Express.js applications from version 3 to 4, covering changes in middleware, routing, and how to update your codebase effectively.
menu: guide
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/guide/migrating-5.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: Migración a Express 5
description: A comprehensive guide to migrating your Express.js applications from version 4 to 5, detailing breaking changes, deprecated methods, and new improvements.
menu: guide
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/guide/overriding-express-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: Overriding the Express API
description: Discover how to customize and extend the Express.js API by overriding methods and properties on the request and response objects using prototypes.
menu: guide
lang: en
lang: es
---

# Overriding the Express API
Expand Down
2 changes: 1 addition & 1 deletion es/guide/routing.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: Direccionamiento de Express
description: Learn how to define and use routes in Express.js applications, including route methods, route paths, parameters, and using Router for modular routing.
menu: guide
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/guide/using-middleware.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: Utilización del middleware de Express
description: Learn how to use middleware in Express.js applications, including application-level and router-level middleware, error handling, and integrating third-party middleware.
menu: guide
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/guide/using-template-engines.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: Utilización de motores de plantilla con Express
description: Discover how to integrate and use template engines like Pug, Handlebars, and EJS with Express.js to render dynamic HTML pages efficiently.
menu: guide
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/guide/writing-middleware.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: Escritura de middleware para su uso en aplicaciones Express
description: Learn how to write custom middleware functions for Express.js applications, including examples and best practices for enhancing request and response handling.
menu: guide
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: home
title: Express - Node.js web application framework
description: Express is a fast, unopinionated, minimalist web framework for Node.js, providing a robust set of features for web and mobile applications.
menu: home
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/resources/community.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: Comunidad de Express
description: Connect with the Express.js community, learn about the technical committee, find resources, explore community-contributed modules, and get involved in discussions.
menu: resources
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/resources/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: Contribuir a Express
description: Find out how to contribute to Express.js, including guidelines for reporting issues, submitting pull requests, becoming a collaborator, and understanding security policies.
menu: resources
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/resources/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: Glosario de Express
description: A comprehensive glossary of terms related to Express.js, Node.js, middleware, routing, and other key concepts to help you understand and use Express effectively.
menu: resources
lang: en
lang: es
redirect_from: " "
---

Expand Down
2 changes: 1 addition & 1 deletion es/resources/middleware.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: middleware
title: Middleware de Express
description: Explore a list of Express.js middleware modules maintained by the Express team and the community, including built-in middleware and popular third-party modules.
menu: resources
lang: en
lang: es
redirect_from: " "
module: mw-home
---
Expand Down
2 changes: 1 addition & 1 deletion es/resources/middleware/body-parser.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: middleware
title: Express body-parser middleware
menu: resources
lang: en
lang: es
redirect_from: " "
module: body-parser
---
2 changes: 1 addition & 1 deletion es/resources/middleware/compression.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: middleware
title: Express compression middleware
menu: resources
lang: en
lang: es
redirect_from: " "
module: compression
---
2 changes: 1 addition & 1 deletion es/resources/middleware/connect-rid.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: middleware
title: Express connect-rid middleware
menu: resources
lang: en
lang: es
redirect_from: " "
module: connect-rid
---
2 changes: 1 addition & 1 deletion es/resources/middleware/cookie-parser.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: middleware
title: Express cookie-parser middleware
menu: resources
lang: en
lang: es
redirect_from: " "
module: cookie-parser
---
2 changes: 1 addition & 1 deletion es/resources/middleware/cookie-session.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: middleware
title: Express cookie-session middleware
menu: resources
lang: en
lang: es
redirect_from: " "
module: cookie-session
---
2 changes: 1 addition & 1 deletion es/resources/middleware/cors.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: middleware
title: Express cors middleware
menu: resources
lang: en
lang: es
redirect_from: " "
module: cors
---
2 changes: 1 addition & 1 deletion es/resources/middleware/errorhandler.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: middleware
title: Express errorhandler middleware
menu: resources
lang: en
lang: es
redirect_from: " "
module: errorhandler
---
2 changes: 1 addition & 1 deletion es/resources/middleware/method-override.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: middleware
title: Express method-override middleware
menu: resources
lang: en
lang: es
redirect_from: " "
module: method-override
---
2 changes: 1 addition & 1 deletion es/resources/middleware/morgan.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: middleware
title: Express morgan middleware
menu: resources
lang: en
lang: es
redirect_from: " "
module: morgan
---
2 changes: 1 addition & 1 deletion es/resources/middleware/multer.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: middleware
title: Express multer middleware
menu: resources
lang: en
lang: es
redirect_from: " "
module: multer
---
2 changes: 1 addition & 1 deletion es/resources/middleware/response-time.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: middleware
title: Express response-time middleware
menu: resources
lang: en
lang: es
redirect_from: " "
module: response-time
---
2 changes: 1 addition & 1 deletion es/resources/middleware/serve-favicon.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: middleware
title: Express serve-favicon middleware
menu: resources
lang: en
lang: es
redirect_from: " "
module: serve-favicon
---
2 changes: 1 addition & 1 deletion es/resources/middleware/serve-index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: middleware
title: Express serve-index middleware
menu: resources
lang: en
lang: es
redirect_from: " "
module: serve-index
---
2 changes: 1 addition & 1 deletion es/resources/middleware/serve-static.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: middleware
title: Express serve-static middleware
menu: resources
lang: en
lang: es
redirect_from: " "
module: serve-static
---
2 changes: 1 addition & 1 deletion es/resources/middleware/session.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: middleware
title: Express session middleware
menu: resources
lang: en
lang: es
redirect_from: " "
module: session
---
2 changes: 1 addition & 1 deletion es/resources/middleware/timeout.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: middleware
title: Express timeout middleware
menu: resources
lang: en
lang: es
redirect_from: " "
module: timeout
---
2 changes: 1 addition & 1 deletion es/resources/middleware/vhost.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: middleware
title: Express vhost middleware
menu: resources
lang: en
lang: es
redirect_from: " "
module: vhost
---
2 changes: 1 addition & 1 deletion es/resources/utils.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: Express utilities
description: Discover utility modules related to Express.js and Node.js, including tools for cookies, CSRF protection, URL parsing, routing, and more to enhance your applications.
menu: resources
lang: en
lang: es
redirect_from: " "
---

Expand Down
Loading