Socket
Book a DemoInstallSign in
Socket

@musicorum/coloris

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@musicorum/coloris

an all-rounder back-end framework for musicorum services

latest
npmnpm
Version
1.1.1
Version published
Weekly downloads
2
Maintainers
2
Weekly downloads
 
Created
Source

@musicorum/coloris

coloris is a set of tools for back-end applications, providing things such as logging, prometheus metrics, configuration, and more.

how?

overly complex hello world:

import {log, metrics, cache} from '@musicorum/coloris'

await cache.start()
metrics.setAppName('test')

const metric = metrics.register('counter', {
    name: 'server.totalRequests',
    description: 'total number of http requests'
})

server.get('/', (req, res) => {
    log.info('server.handler', 'got a request!')
    metric.increase()
    res.send('hello world!')
})

server.get('/metrics', (req, res) => {
    res.send(metrics.toPrometheus())
})

server.listen(3000)

what does it look like?

example

FAQs

Package last updated on 25 Feb 2023

Did you know?

Socket

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.

Install

Related posts