A map of user defined services available on the libp2p node via the services key
services
const node = await createLibp2p({ // ...other options services: { myService: myService({ // ...service options }) }})// invoke methods on the servicenode.services.myService.anOperation()
A map of user defined services available on the libp2p node via the
services
keyExample