We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm reading the 10 chapter, Building Microservice systems. And I came accross to this syntax below at page 506 (Standardizing service boilerplate)
function createClient (ns, opts) { return createClient[ns] || (createClient[ns] = nos(net.connect(opts))) }
Didn't quite understand the createClient[ns] = nos(net.connect(opts)) part, What it means? Why should I use it?
createClient[ns] = nos(net.connect(opts))
Is this syntax documented anywhere?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm reading the 10 chapter, Building Microservice systems.
And I came accross to this syntax below at page 506 (Standardizing service boilerplate)
Didn't quite understand the
createClient[ns] = nos(net.connect(opts))
part, What it means? Why should I use it?Is this syntax documented anywhere?
The text was updated successfully, but these errors were encountered: