This is an automated email from the ASF dual-hosted git repository.

chaokunyang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fory-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 2f38891aa rename foryjs to apache-fory (#304)
2f38891aa is described below

commit 2f38891aa11549e85124544630130b4ff6107c70
Author: Shawn Yang <[email protected]>
AuthorDate: Thu Aug 28 18:59:48 2025 +0800

    rename foryjs to apache-fory (#304)
---
 docs/docs/start/usage.md                               |  6 +++---
 .../current/docs/guide/xlang_serialization_guide.md    | 18 +++++++++---------
 .../current/docs/start/usage.md                        |  6 +++---
 .../docs/guide/xlang_serialization_guide.md            | 18 +++++++++---------
 .../version-0.11/docs/start/usage.md                   |  6 +++---
 .../version-0.11/guide/xlang_serialization_guide.md    | 18 +++++++++---------
 .../docs/guide/xlang_serialization_guide.md            | 18 +++++++++---------
 .../version-0.12/docs/start/usage.md                   |  6 +++---
 .../version-0.12/guide/xlang_serialization_guide.md    | 18 +++++++++---------
 .../docs/guide/xlang_serialization_guide.md            | 18 +++++++++---------
 versioned_docs/version-0.11/docs/start/usage.md        |  6 +++---
 .../version-0.11/guide/xlang_serialization_guide.md    | 18 +++++++++---------
 .../docs/guide/xlang_serialization_guide.md            | 18 +++++++++---------
 versioned_docs/version-0.12/docs/start/usage.md        |  6 +++---
 .../version-0.12/guide/xlang_serialization_guide.md    | 18 +++++++++---------
 15 files changed, 99 insertions(+), 99 deletions(-)

diff --git a/docs/docs/start/usage.md b/docs/docs/start/usage.md
index 57ae053e3..750dcf1ad 100644
--- a/docs/docs/start/usage.md
+++ b/docs/docs/start/usage.md
@@ -175,14 +175,14 @@ func main() {
 ### JavaScript
 
 ```typescript
-import Fory, { Type } from '@foryjs/fory';
+import Fory, { Type } from '@apache-fory/fory';
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from '@foryjs/hps';
+import hps from '@apache-fory/hps';
 
 // Now we describe data structures using JSON, but in the future, we will use 
more ways.
 const description = Type.object('example.foo', {
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/docs/guide/xlang_serialization_guide.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/docs/guide/xlang_serialization_guide.md
index d6c44c3c3..c252e5941 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/docs/guide/xlang_serialization_guide.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/docs/guide/xlang_serialization_guide.md
@@ -111,14 +111,14 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory from "@foryjs/fory";
+import Fory from "@apache-fory/fory";
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from "@foryjs/hps";
+import hps from "@apache-fory/hps";
 
 const fory = new Fory({ hps });
 const input = fory.serialize("hello fory");
@@ -330,14 +330,14 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory, { Type, InternalSerializerType } from "@foryjs/fory";
+import Fory, { Type, InternalSerializerType } from "@apache-fory/fory";
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from "@foryjs/hps";
+import hps from "@apache-fory/hps";
 
 // Now we describe data structures using JSON, but in the future, we will use 
more ways.
 const description = Type.object("example.foo", {
@@ -505,13 +505,13 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory, { Type } from "@foryjs/fory";
+import Fory, { Type } from "@apache-fory/fory";
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from "@foryjs/hps";
+import hps from "@apache-fory/hps";
 
 const description = Type.object("example.foo", {
   foo: Type.string(),
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/docs/start/usage.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/docs/start/usage.md
index 969450ea1..2c03cbf41 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/docs/start/usage.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/docs/start/usage.md
@@ -174,14 +174,14 @@ func main() {
 ### JavaScript
 
 ```typescript
-import Fory, { Type } from '@foryjs/fory';
+import Fory, { Type } from '@apache-fory/fory';
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from '@foryjs/hps';
+import hps from '@apache-fory/hps';
 
 // Now we describe data structures using JSON, but in the future, we will use 
more ways.
 const description = Type.object('example.foo', {
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.11/docs/guide/xlang_serialization_guide.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.11/docs/guide/xlang_serialization_guide.md
index d6c44c3c3..c252e5941 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.11/docs/guide/xlang_serialization_guide.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.11/docs/guide/xlang_serialization_guide.md
@@ -111,14 +111,14 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory from "@foryjs/fory";
+import Fory from "@apache-fory/fory";
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from "@foryjs/hps";
+import hps from "@apache-fory/hps";
 
 const fory = new Fory({ hps });
 const input = fory.serialize("hello fory");
@@ -330,14 +330,14 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory, { Type, InternalSerializerType } from "@foryjs/fory";
+import Fory, { Type, InternalSerializerType } from "@apache-fory/fory";
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from "@foryjs/hps";
+import hps from "@apache-fory/hps";
 
 // Now we describe data structures using JSON, but in the future, we will use 
more ways.
 const description = Type.object("example.foo", {
@@ -505,13 +505,13 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory, { Type } from "@foryjs/fory";
+import Fory, { Type } from "@apache-fory/fory";
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from "@foryjs/hps";
+import hps from "@apache-fory/hps";
 
 const description = Type.object("example.foo", {
   foo: Type.string(),
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.11/docs/start/usage.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.11/docs/start/usage.md
index 969450ea1..2c03cbf41 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.11/docs/start/usage.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.11/docs/start/usage.md
@@ -174,14 +174,14 @@ func main() {
 ### JavaScript
 
 ```typescript
-import Fory, { Type } from '@foryjs/fory';
+import Fory, { Type } from '@apache-fory/fory';
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from '@foryjs/hps';
+import hps from '@apache-fory/hps';
 
 // Now we describe data structures using JSON, but in the future, we will use 
more ways.
 const description = Type.object('example.foo', {
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.11/guide/xlang_serialization_guide.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.11/guide/xlang_serialization_guide.md
index cb21f1f26..8ba8c379d 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.11/guide/xlang_serialization_guide.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.11/guide/xlang_serialization_guide.md
@@ -109,14 +109,14 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory from "@foryjs/fory";
+import Fory from "@apache-fory/fory";
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from "@foryjs/hps";
+import hps from "@apache-fory/hps";
 
 const fory = new Fory({ hps });
 const input = fory.serialize("hello fory");
@@ -328,14 +328,14 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory, { Type, InternalSerializerType } from "@foryjs/fory";
+import Fory, { Type, InternalSerializerType } from "@apache-fory/fory";
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from "@foryjs/hps";
+import hps from "@apache-fory/hps";
 
 // Now we describe data structures using JSON, but in the future, we will use 
more ways.
 const description = Type.object("example.foo", {
@@ -502,13 +502,13 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory, { Type } from '@foryjs/fory';
+import Fory, { Type } from '@apache-fory/fory';
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from '@foryjs/hps';
+import hps from '@apache-fory/hps';
 
 const description = Type.object('example.foo', {
   foo: Type.string(),
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.12/docs/guide/xlang_serialization_guide.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.12/docs/guide/xlang_serialization_guide.md
index d6c44c3c3..c252e5941 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.12/docs/guide/xlang_serialization_guide.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.12/docs/guide/xlang_serialization_guide.md
@@ -111,14 +111,14 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory from "@foryjs/fory";
+import Fory from "@apache-fory/fory";
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from "@foryjs/hps";
+import hps from "@apache-fory/hps";
 
 const fory = new Fory({ hps });
 const input = fory.serialize("hello fory");
@@ -330,14 +330,14 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory, { Type, InternalSerializerType } from "@foryjs/fory";
+import Fory, { Type, InternalSerializerType } from "@apache-fory/fory";
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from "@foryjs/hps";
+import hps from "@apache-fory/hps";
 
 // Now we describe data structures using JSON, but in the future, we will use 
more ways.
 const description = Type.object("example.foo", {
@@ -505,13 +505,13 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory, { Type } from "@foryjs/fory";
+import Fory, { Type } from "@apache-fory/fory";
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from "@foryjs/hps";
+import hps from "@apache-fory/hps";
 
 const description = Type.object("example.foo", {
   foo: Type.string(),
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.12/docs/start/usage.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.12/docs/start/usage.md
index 969450ea1..2c03cbf41 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.12/docs/start/usage.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.12/docs/start/usage.md
@@ -174,14 +174,14 @@ func main() {
 ### JavaScript
 
 ```typescript
-import Fory, { Type } from '@foryjs/fory';
+import Fory, { Type } from '@apache-fory/fory';
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from '@foryjs/hps';
+import hps from '@apache-fory/hps';
 
 // Now we describe data structures using JSON, but in the future, we will use 
more ways.
 const description = Type.object('example.foo', {
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.12/guide/xlang_serialization_guide.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.12/guide/xlang_serialization_guide.md
index d6c44c3c3..c252e5941 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.12/guide/xlang_serialization_guide.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.12/guide/xlang_serialization_guide.md
@@ -111,14 +111,14 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory from "@foryjs/fory";
+import Fory from "@apache-fory/fory";
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from "@foryjs/hps";
+import hps from "@apache-fory/hps";
 
 const fory = new Fory({ hps });
 const input = fory.serialize("hello fory");
@@ -330,14 +330,14 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory, { Type, InternalSerializerType } from "@foryjs/fory";
+import Fory, { Type, InternalSerializerType } from "@apache-fory/fory";
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from "@foryjs/hps";
+import hps from "@apache-fory/hps";
 
 // Now we describe data structures using JSON, but in the future, we will use 
more ways.
 const description = Type.object("example.foo", {
@@ -505,13 +505,13 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory, { Type } from "@foryjs/fory";
+import Fory, { Type } from "@apache-fory/fory";
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from "@foryjs/hps";
+import hps from "@apache-fory/hps";
 
 const description = Type.object("example.foo", {
   foo: Type.string(),
diff --git 
a/versioned_docs/version-0.11/docs/guide/xlang_serialization_guide.md 
b/versioned_docs/version-0.11/docs/guide/xlang_serialization_guide.md
index cb21f1f26..8ba8c379d 100644
--- a/versioned_docs/version-0.11/docs/guide/xlang_serialization_guide.md
+++ b/versioned_docs/version-0.11/docs/guide/xlang_serialization_guide.md
@@ -109,14 +109,14 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory from "@foryjs/fory";
+import Fory from "@apache-fory/fory";
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from "@foryjs/hps";
+import hps from "@apache-fory/hps";
 
 const fory = new Fory({ hps });
 const input = fory.serialize("hello fory");
@@ -328,14 +328,14 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory, { Type, InternalSerializerType } from "@foryjs/fory";
+import Fory, { Type, InternalSerializerType } from "@apache-fory/fory";
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from "@foryjs/hps";
+import hps from "@apache-fory/hps";
 
 // Now we describe data structures using JSON, but in the future, we will use 
more ways.
 const description = Type.object("example.foo", {
@@ -502,13 +502,13 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory, { Type } from '@foryjs/fory';
+import Fory, { Type } from '@apache-fory/fory';
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from '@foryjs/hps';
+import hps from '@apache-fory/hps';
 
 const description = Type.object('example.foo', {
   foo: Type.string(),
diff --git a/versioned_docs/version-0.11/docs/start/usage.md 
b/versioned_docs/version-0.11/docs/start/usage.md
index 57ae053e3..750dcf1ad 100644
--- a/versioned_docs/version-0.11/docs/start/usage.md
+++ b/versioned_docs/version-0.11/docs/start/usage.md
@@ -175,14 +175,14 @@ func main() {
 ### JavaScript
 
 ```typescript
-import Fory, { Type } from '@foryjs/fory';
+import Fory, { Type } from '@apache-fory/fory';
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from '@foryjs/hps';
+import hps from '@apache-fory/hps';
 
 // Now we describe data structures using JSON, but in the future, we will use 
more ways.
 const description = Type.object('example.foo', {
diff --git a/versioned_docs/version-0.11/guide/xlang_serialization_guide.md 
b/versioned_docs/version-0.11/guide/xlang_serialization_guide.md
index cb21f1f26..8ba8c379d 100644
--- a/versioned_docs/version-0.11/guide/xlang_serialization_guide.md
+++ b/versioned_docs/version-0.11/guide/xlang_serialization_guide.md
@@ -109,14 +109,14 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory from "@foryjs/fory";
+import Fory from "@apache-fory/fory";
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from "@foryjs/hps";
+import hps from "@apache-fory/hps";
 
 const fory = new Fory({ hps });
 const input = fory.serialize("hello fory");
@@ -328,14 +328,14 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory, { Type, InternalSerializerType } from "@foryjs/fory";
+import Fory, { Type, InternalSerializerType } from "@apache-fory/fory";
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from "@foryjs/hps";
+import hps from "@apache-fory/hps";
 
 // Now we describe data structures using JSON, but in the future, we will use 
more ways.
 const description = Type.object("example.foo", {
@@ -502,13 +502,13 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory, { Type } from '@foryjs/fory';
+import Fory, { Type } from '@apache-fory/fory';
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from '@foryjs/hps';
+import hps from '@apache-fory/hps';
 
 const description = Type.object('example.foo', {
   foo: Type.string(),
diff --git 
a/versioned_docs/version-0.12/docs/guide/xlang_serialization_guide.md 
b/versioned_docs/version-0.12/docs/guide/xlang_serialization_guide.md
index cb21f1f26..8ba8c379d 100644
--- a/versioned_docs/version-0.12/docs/guide/xlang_serialization_guide.md
+++ b/versioned_docs/version-0.12/docs/guide/xlang_serialization_guide.md
@@ -109,14 +109,14 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory from "@foryjs/fory";
+import Fory from "@apache-fory/fory";
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from "@foryjs/hps";
+import hps from "@apache-fory/hps";
 
 const fory = new Fory({ hps });
 const input = fory.serialize("hello fory");
@@ -328,14 +328,14 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory, { Type, InternalSerializerType } from "@foryjs/fory";
+import Fory, { Type, InternalSerializerType } from "@apache-fory/fory";
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from "@foryjs/hps";
+import hps from "@apache-fory/hps";
 
 // Now we describe data structures using JSON, but in the future, we will use 
more ways.
 const description = Type.object("example.foo", {
@@ -502,13 +502,13 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory, { Type } from '@foryjs/fory';
+import Fory, { Type } from '@apache-fory/fory';
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from '@foryjs/hps';
+import hps from '@apache-fory/hps';
 
 const description = Type.object('example.foo', {
   foo: Type.string(),
diff --git a/versioned_docs/version-0.12/docs/start/usage.md 
b/versioned_docs/version-0.12/docs/start/usage.md
index 57ae053e3..750dcf1ad 100644
--- a/versioned_docs/version-0.12/docs/start/usage.md
+++ b/versioned_docs/version-0.12/docs/start/usage.md
@@ -175,14 +175,14 @@ func main() {
 ### JavaScript
 
 ```typescript
-import Fory, { Type } from '@foryjs/fory';
+import Fory, { Type } from '@apache-fory/fory';
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from '@foryjs/hps';
+import hps from '@apache-fory/hps';
 
 // Now we describe data structures using JSON, but in the future, we will use 
more ways.
 const description = Type.object('example.foo', {
diff --git a/versioned_docs/version-0.12/guide/xlang_serialization_guide.md 
b/versioned_docs/version-0.12/guide/xlang_serialization_guide.md
index cb21f1f26..8ba8c379d 100644
--- a/versioned_docs/version-0.12/guide/xlang_serialization_guide.md
+++ b/versioned_docs/version-0.12/guide/xlang_serialization_guide.md
@@ -109,14 +109,14 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory from "@foryjs/fory";
+import Fory from "@apache-fory/fory";
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from "@foryjs/hps";
+import hps from "@apache-fory/hps";
 
 const fory = new Fory({ hps });
 const input = fory.serialize("hello fory");
@@ -328,14 +328,14 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory, { Type, InternalSerializerType } from "@foryjs/fory";
+import Fory, { Type, InternalSerializerType } from "@apache-fory/fory";
 
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from "@foryjs/hps";
+import hps from "@apache-fory/hps";
 
 // Now we describe data structures using JSON, but in the future, we will use 
more ways.
 const description = Type.object("example.foo", {
@@ -502,13 +502,13 @@ func main() {
 **JavaScript**
 
 ```javascript
-import Fory, { Type } from '@foryjs/fory';
+import Fory, { Type } from '@apache-fory/fory';
 /**
- * @foryjs/hps use v8's fast-calls-api that can be called directly by jit, 
ensure that the version of Node is 20 or above.
+ * @apache-fory/hps use v8's fast-calls-api that can be called directly by 
jit, ensure that the version of Node is 20 or above.
  * Experimental feature, installation success cannot be guaranteed at this 
moment
  * If you are unable to install the module, replace it with `const hps = null;`
  **/
-import hps from '@foryjs/hps';
+import hps from '@apache-fory/hps';
 
 const description = Type.object('example.foo', {
   foo: Type.string(),


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to