Skip to main content

Nexys.configure()

Returns void.


Allows you to configure user data & client version. Data will be sent to dashboard on each request.

ParameterTypeDefault
configfunctionundefined

First parameter of the function takes an callback. This callback will be called with an object that contains these following properties:

PropertyTypeDefault
setUserstringundefined
setAppVersionstringundefined

Example

nexys.configure((config) => {
config.setUser("USER_ID");
config.setAppVersion("1.0.0");
});

More information here.