![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@anytestforpm/ocr
Advanced tools
npm i @anytestforpm/ocr # Language Support 支持地區為: VN IN ID BR MM PK TH PH NG # Usage Example 1.初始化OCR的辨識語系及API路由設定,就會自動取得后台設定檔 ```javascript import { initOCR } from '@anytestforpm/ocr';
npm i @anytestforpm/ocr
支持地區為: VN IN ID BR MM PK TH PH NG
1.初始化OCR的辨識語系及API路由設定,就會自動取得后台設定檔
import { initOCR } from '@anytestforpm/ocr';
mounted() {
//initOCR
//@param {String} VN IN ID BR MM ...
//@param {String} API URL
if (process.env.NODE_ENV === 'production') {
initOCR('VN','https://your-api-domain/api/xxx');
} else {
initOCR('VN','https://your-api-domain/api/xxx');
}
},
2.執行OCR圖片辨識
import { recognizeOCR, RESULT_TYPE } from '@anytestforpm/ocr';
try {
let ocrResData = await recognizeOCR(imgUrl);
//取得后台設定檔失敗
if (ocrResData.type === RESULT_TYPE.CONFIG_INVALID) {
//do something
}
//圖片辨識功能已停用
if (ocrResData.type === RESULT_TYPE.CONFIG_DISABLED) {
//do something
}
//驗證成功
if (ocrResData.type === RESULT_TYPE.KEYWORDS_SUCCESS) {
//do something
}
//驗證不合格 - 關鍵字匹配不合格
if (ocrResData.type === RESULT_TYPE.KEYWORDS_NOT_FOUND) {
//do something
}
//驗證不合格 - 不合法的關鍵字
if (ocrResData.type === RESULT_TYPE.KEYWORDS_INVALID) {
//do something
}
//驗證超時
if (ocrResData.type === RESULT_TYPE.KEYWORDS_TIMEOUT) {
//do something
}
} catch (execption) {
//do something
}
3.recognizeOCR(imgUrl) ,入參imgUrl
let ocrResData = await recognizeOCR(imgUrl);
mixins.js
FAQs
npm i @anytestforpm/ocr # Language Support 支持地區為: VN IN ID BR MM PK TH PH NG BD TR US # Usage Example 1.初始化OCR的辨識語系及API路由設定,就會自動取得后台設定檔 ```javascript import { initOCR } from '@anytestforpm/ocr';
The npm package @anytestforpm/ocr receives a total of 0 weekly downloads. As such, @anytestforpm/ocr popularity was classified as not popular.
We found that @anytestforpm/ocr demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.