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 ba1e75fe2 🔄 synced local 'docs/guide/' with remote 'docs/guide/'
ba1e75fe2 is described below
commit ba1e75fe270c1b9bd85262513eb1e01218cfe038
Author: chaokunyang <[email protected]>
AuthorDate: Thu Aug 28 10:26:41 2025 +0000
🔄 synced local 'docs/guide/' with remote 'docs/guide/'
---
docs/guide/xlang_serialization_guide.md | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/docs/guide/xlang_serialization_guide.md
b/docs/guide/xlang_serialization_guide.md
index cb21f1f26..8ba8c379d 100644
--- a/docs/guide/xlang_serialization_guide.md
+++ b/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(),
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]