diff --git a/README.md b/README.md index 595c27a..7bbc660 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,7 @@ implementation 'net.bytebuddy:byte-buddy:1.15.5' * [Access the Whole JVM](https://www.caoccao.com/Javet/tutorial/advanced/access_the_whole_jvm.html) * [Dynamic: Anonymous Object for Class](https://www.caoccao.com/Javet/reference/converters/proxy_converter.html#dynamic-anonymous-object-for-class) +* [Development](docs/development.md) * [Release Notes](docs/release_notes.md) ## License diff --git a/docs/development.md b/docs/development.md new file mode 100644 index 0000000..ee3747a --- /dev/null +++ b/docs/development.md @@ -0,0 +1,13 @@ +# Development + +## Resources + +- asm + - [Git](https://gitlab.ow2.org/asm/asm) + - [asm4 Guide](https://asm.ow2.io/asm4-guide.pdf) +- ByteBuddy + - [Git](https://github.com/raphw/byte-buddy) + - [Home](https://bytebuddy.net/) + - [Tutorial](https://bytebuddy.net/#/tutorial) +- [Javet](https://github.com/caoccao/Javet) +- [swc4j](https://github.com/caoccao/swc4j)