An open API service indexing awesome lists of open source software.

https://github.com/mycore-org/js-common

common Javascript code for frontend development
https://github.com/mycore-org/js-common

Last synced: 4 months ago
JSON representation

common Javascript code for frontend development

Awesome Lists containing this project

README

          

# js-common
A JavaScript library that provides essential utilities and reusable components to simplify development and enhance interaction with MyCoRe-based applications.

## Add package
### npm/yarn environment
```
npx jsr add @mycore/js-common
```

## Usage example
```ts
import { LangService } from '@mycore/js-common/i18n';

const langService = new LangService(BASE_URL);
console.log(langService.getLanguages());
```