Static fields and properties

This article provides an introduction to cross-technology handling of static fields and properties.
Javonet allows you to reference and use modules or packages written in (Java/Kotlin/Groovy/Clojure, C#/VB.NET, Ruby, Perl, Python, JavaScript/TypeScript) like they were created in your technology. If have not yet created your first project check Javonet overview and quick start guides for your technology.

With Javonet you can interact with static field and properties from NodeJs package like they were available in Python but invocation must be performed through Javonet SDK API.

Get/Set static field from custom NodeJs package

With Javonet it is possible to reference any custom NodeJs package and interact with public static fields and properties declared on types defined within that module almost the same as with any other Python library.

Snippet below represents the sample code from NodeJs package which contains class with fields:

publicValue;
#privateValue;
static staticValue = 3;

constructor(first, second) {
	this.publicValue = first;
	this.#privateValue = second;
}

It is possible to get one of the declared static fields from NodeJs package using following Python code.

# use activate only once in your app
Javonet.activate("your-license-key")

# create called runtime context
called_runtime = Javonet.in_memory().nodejs()

# set up variables
library_path = resources_directory + '/TestClass.js'
class_name = 'TestClass'

# load custom library
called_runtime.load_library(library_path)

# get type from the runtime
called_runtime_type = called_runtime.get_type(class_name).execute()

# get type's static field
response = called_runtime_type.get_static_field("staticValue").execute()

# get value from response
result = response.get_value()

# write result to console
print(result)

This uses in memory runtime bridging to load the NodeJs package, and next retrieves reference to specific type and gets the static field. Result of the invocation is returned as regular Python value and can be used for further processing. It is possible to set one of the declared static fields from NodeJs package using following Python code.

# use activate only once in your app
Javonet.activate("your-license-key")

# create called runtime context
called_runtime = Javonet.in_memory().nodejs()

# set up variables
library_path = resources_directory + '/TestClass.js'
class_name = 'TestClass'

# load custom library
called_runtime.load_library(library_path)

# get type from the runtime
called_runtime_type = called_runtime.get_type(class_name).execute()

# set static field value
called_runtime_type.set_static_field("staticValue", 75).execute()

# get type's static field
response = called_runtime_type.get_static_field("staticValue").execute()

# get value from response
result = response.get_value()

# write result to console
print(result)

This uses in memory runtime bridging to load the NodeJs package, and next retrieves reference to specific type, then sets and gets the static field. Result of the invocation is returned as regular Python value and can be used for further processing.

Get/Set static field from standard NodeJs package

The same steps are required to get types and fields from framework NodeJs package:

# use activate only once in your app
Javonet.activate("your-license-key")

# create runtime context
called_runtime = Javonet.in_memory().nodejs()

# get type from the runtime
called_runtime_type = called_runtime.get_type("Math").execute()

# get type's static field
response = called_runtime_type.get_static_field("PI").execute()

# get value from response
result = response.get_value()

# write result to console
print(result)

The same operation can be performed remotely by just changing the new Runtime Context invocation from in memory to tcp that will create and interact with your NodeJs package objects on any remote node, container or service that hosts Javonet Code Gateway. This way you can preserve the same logic in your application and instantly switch between monolithic and microservices architecture without the need to implement the integration layer based on web services or other remote invocation methods.

Read more about use cases and software architecture scenarios where Javonet runtime bridging technology can support your development process.