Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@scalecube/scalecube-microservice
Advanced tools
[![Join the chat at https://gitter.im/scalecube-js/Lobby](https://badges.gitter.im/scalecube-js/Lobby.svg)](https://gitter.im/scalecube-js/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
This is part of scalecube-js project, see more at https://github.com/scalecube/scalecube-js
Full documentation
This package provides Scalecube's implementation for microservices architecture.
please Read before starting to work with scalecube.
import { createMicroservice } from '@scalecube/scalecube-microservice';
import { TransportNodeJS } from '@scalecube/transport-nodejs';
import { joinCluster } from '@scalecube/cluster-nodejs';
const microserviceInstance = createMicroservice({
services: [/* array of services */],
seedAddress : 'pm://myOrganization:8080/ServiceA',
address : 'pm://myOrganization:8080/ServiceB',
transport: TransportNodeJS, // scalecube provide a default transport configuration when running on browser,
cluster: joinCluster, // scalecube provide a default cluster configuration when running on browser,
defaultRouter: retryRouter({period:10}),
debug: true // default is false
})
import { ASYNC_MODEL_TYPES } from '@scalecube/scalecube-microservice';
export const greetingServiceDefinition = {
serviceName: 'GreetingService',
methods: {
hello: {
asyncModel: ASYNC_MODEL_TYPES.REQUEST_RESPONSE,
}
},
};
import { createMicroservice } from '@scalecube/scalecube-microservice';
import { greetingServiceDefinition } from './definitions';
createMicroservice({
services : [{
definition: greetingServiceDefinition,
reference: {
hello : async (name) => `Hello ${name}`
},
}],
address : 'seed'
});
import { createMicroservice } from '@scalecube/scalecube-microservice';
import { greetingServiceDefinition } from './definitions';
createMicroservice({
service : [{
definition: greetingServiceDefinition,
reference: ({ createProxy, createServiceCall }) => {
// callback response with createProxy or createServiceCall
// it is possible to inject the proxy/serviceCall to the service
const proxy = createProxy({ serviceDefinition: remoteServiceDefinition});
return new GreetingService(proxy);
}
}],
address : 'seed'
});
import { createMicroservice } from '@scalecube/scalecube-microservice';
const microservice = createMicroservice({
address : 'ms1',
seedAddress : 'seed'
});
// createProxy will return a Proxy(service)
const proxyName = microservice.createProxy({
serviceDefinition: remoteServiceDefinition
});
proxyName.hello('ME').then(console.log) // Hello ME
FAQs
[![Join the chat at https://gitter.im/scalecube-js/Lobby](https://badges.gitter.im/scalecube-js/Lobby.svg)](https://gitter.im/scalecube-js/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
The npm package @scalecube/scalecube-microservice receives a total of 13 weekly downloads. As such, @scalecube/scalecube-microservice popularity was classified as not popular.
We found that @scalecube/scalecube-microservice demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.