Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@http-status-codes/i18n-en

Package Overview
Dependencies
Maintainers
0
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@http-status-codes/i18n-en

HTTP status codes i18n

  • 1.5.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

🌐 @http-status-codes/i18n-en

What is @http-status-codes/i18n-en?

It provides information related to HTTP status code messages in 21 national languages 📜. When you need to handle matters related to HTTP status codes, you can give it a try. It's very simple.

🚀 Support:

  • HttpStatusText enumeration, supports obtaining the reason phrase corresponding to the status code in the form of English constants and h{status code value}. For example, HttpStatusText.OK or HttpStatusText.h200.
  • HttpStatusDescription enumeration, supports obtaining the detailed description corresponding to the status code in the form of English constants and h{status code value}. For example, HttpStatusDescription.OK or HttpStatusDescription.h200.
  • HttpStatusCode enumeration, supports obtaining the value corresponding to the status code in the form of English constants and h{status code value}. For example, HttpStatusCode.OK or HttpStatusCode.h200.
  • Supports verifying whether the status code and status code reason phrase are valid through isCodeOrTextValid. For example, both isCodeOrTextValid(200) or isCodeOrTextValid('OK') are true.
  • Supports obtaining the complete information corresponding to the specified status code or status code reason phrase through getStatusInfo, such as status code, reason phrase, detailed description, and whether it is successful.
  • Supports directly obtaining whether the current status code is normal through isStatusSuccessful.
  • Supports obtaining simple status code information through the getSimpleStatusMessage method, such as 200 OK.
  • Supports obtaining the simple information of the specified status code through the getStatusMessage method, such as 200 OK: The standard response for successful HTTP requests..
  • Supports obtaining the simple information of the specified status code through the getStatusCode method, such as getStatusCode('OK') -> 200.
  • Supports obtaining the reason phrase of the specified status code through the getStatusText method, such as getStatusText(200) -> 'OK'.

⚔️ Why build it?

The http-status-codes library itself does not support internationalization (i18n) 🌍. However, my project needs to support it. I asked GPT which libraries could meet my requirements, but it talked nonsense and told me there was one called @http-status-codes/i18n. Eventually, I couldn't find this so-called @http-status-codes/i18n, so I made it myself.

💉 Reference inspiration

🚀 Technology selection

  1. I want to develop quickly with nx, and then use the nx scaffolding to generate the project engineering quickly ,2. I want to generate code with ts-morph ,3. I want to conduct AI translation with Feishu/Multi-dimensional Table/Field Shortcut ,4. I want to convert XLSX to JSON, so I use the translated table to generate the JSON configuration ,5. I want to convert JSON to Project, so I use the JSON configuration to generate multi-language projects

🔥 Advantages

✂️ Lightweight: ES6, TS, good scalability, good compatibility, multi-package support, on-demand usage. , ,⚡ Strong: Supports multiple languages, up to 21 countries, the dependent packages support various resource formats 'cjs', 'esm', 'es', 'amd', 'iife', 'umd','system', multiple compressions, and has a good compression effect. , ,⚙️ Simple: Has fine-grained APIs and coarse-grained APIs, and is very convenient to use.

📚 Quick Use

Just run any of the following commands for a normal installation. The specific installation command depends on the dependency environment in your current project. By default, npm is used.

npm install @http-status-codes/i18n-en
yarn add @http-status-codes/i18n-en
pnpm i @http-status-codes/i18n-en
import {
  getSimpleStatusMessage,
  getStatusMessage,
  getStatusText,
} from "@http-status-codes/i18n-en";

getStatusText(HttpStatusCode.OK) // OK
getSimpleStatusMessage(HttpStatusCode.OK) // 200 OK
getStatusMessage(HttpStatusCode.OK) // 200 OK: The standard response for successful HTTP requests.

⚡ Function List

APIResult
HttpStatusCode.ACCEPTED202
HttpStatusCodeByCode.h100100
HttpStatusText.OKOK
HttpStatusTextByCode.h200OK
HttpStatusDescription.ACCEPTEDAccepted:The request has been accepted but has not been processed yet. This code does not guarantee that the request will process successfully.
HttpStatusDescriptionByCode.h200OK:The standard response for successful HTTP requests.
isCodeOrTextValid(200)true
isCodeOrTextValid('OK')true
isCodeOrTextValid(HttpStatusCodeByCode.h100)true
isCodeOrTextValid(HttpStatusCode.ACCEPTED)true
isCodeOrTextValid(HttpStatusText.OK)true
isCodeOrTextValid(HttpStatusTextByCode.h200)true
getStatusInfo(200){"code":200,"message":"OK:The standard response for successful HTTP requests.","success":true}
getStatusInfo('OK'){"code":200,"message":"OK:The standard response for successful HTTP requests.","success":true}
getStatusInfo(HttpStatusCodeByCode.h100){"code":100,"message":"Continue:The server has received the request headers, and that the client should proceed to send the request body.","success":true}
getStatusInfo(HttpStatusCode.ACCEPTED){"code":202,"message":"Accepted:The request has been accepted but has not been processed yet. This code does not guarantee that the request will process successfully.","success":true}
getStatusInfo(HttpStatusText.OK){"code":200,"message":"OK:The standard response for successful HTTP requests.","success":true}
getStatusInfo(HttpStatusTextByCode.h200){"code":200,"message":"OK:The standard response for successful HTTP requests.","success":true}
isStatusSuccessful(200)true
isStatusSuccessful('OK')true
isStatusSuccessful(HttpStatusCodeByCode.h100)true
isStatusSuccessful(HttpStatusCode.ACCEPTED)true
isStatusSuccessful(HttpStatusText.OK)true
isStatusSuccessful(HttpStatusTextByCode.h200)true
getSimpleStatusMessage(200)200 OK
getSimpleStatusMessage('OK')200 OK
getSimpleStatusMessage(HttpStatusCodeByCode.h100)100 Continue
getSimpleStatusMessage(HttpStatusCode.ACCEPTED)202 Accepted
getSimpleStatusMessage(HttpStatusText.OK)200 OK
getSimpleStatusMessage(HttpStatusTextByCode.h200)200 OK
getStatusMessage(200)200 OK:The standard response for successful HTTP requests.
getStatusMessage('OK')200 OK:The standard response for successful HTTP requests.
getStatusMessage(HttpStatusCodeByCode.h100)100 Continue:The server has received the request headers, and that the client should proceed to send the request body.
getStatusMessage(HttpStatusCode.ACCEPTED)202 Accepted:The request has been accepted but has not been processed yet. This code does not guarantee that the request will process successfully.
getStatusMessage(HttpStatusText.OK)200 OK:The standard response for successful HTTP requests.
getStatusMessage(HttpStatusTextByCode.h200)200 OK:The standard response for successful HTTP requests.
getStatusCode('OK')200
getStatusCode(HttpStatusText.OK)200
getStatusCode(HttpStatusTextByCode.h200)200
getStatusText(200)OK
getStatusText(HttpStatusCodeByCode.h100)Continue
getStatusText(HttpStatusCode.ACCEPTED)Accepted

✨ Effect Display

I hope to have a simple display page that can show the current status code information and the corresponding detailed description. This would facilitate users' viewing. , For now, you can take a look at the code first:, https://github1s.com/aiyoudiao/http-status-codes-i18n/blob/HEAD/packages/i18n-en/src/lib/helpers.ts

📦 All Packages

TitleDescriptionSource CodePackage Name
zhChinesepackages/i18n-zh@http-status-codes/i18n-zh
enEnglishpackages/i18n-en@http-status-codes/i18n-en
jaJapanesepackages/i18n-ja@http-status-codes/i18n-ja
thThaipackages/i18n-th@http-status-codes/i18n-th
hiHindipackages/i18n-hi@http-status-codes/i18n-hi
idIndonesianpackages/i18n-id@http-status-codes/i18n-id
zh-hantTraditional Chinesepackages/i18n-zh-hant@http-status-codes/i18n-zh-hant
frFrenchpackages/i18n-fr@http-status-codes/i18n-fr
esSpanishpackages/i18n-es@http-status-codes/i18n-es
ptPortuguesepackages/i18n-pt@http-status-codes/i18n-pt
koKoreanpackages/i18n-ko@http-status-codes/i18n-ko
viVietnamesepackages/i18n-vi@http-status-codes/i18n-vi
ruRussianpackages/i18n-ru@http-status-codes/i18n-ru
deGermanpackages/i18n-de@http-status-codes/i18n-de
itItalianpackages/i18n-it@http-status-codes/i18n-it
arArabicpackages/i18n-ar@http-status-codes/i18n-ar
plPolishpackages/i18n-pl@http-status-codes/i18n-pl
tlTagalog (Filipino)packages/i18n-tl@http-status-codes/i18n-tl
msMalaypackages/i18n-ms@http-status-codes/i18n-ms
trTurkishpackages/i18n-tr@http-status-codes/i18n-tr
huHungarianpackages/i18n-hu@http-status-codes/i18n-hu

Keywords

FAQs

Package last updated on 04 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc