Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/UnlyEd/universal-language-detector
Language detector that works universally (browser + server) - Meant to be used with a universal framework, such as Next.js
https://github.com/UnlyEd/universal-language-detector
i18n i18next javascript-library language language-detection language-detection-lib language-detector locale locale-awareness locale-detect nextjs nodejs-library typescript-library
Last synced: 8 days ago
JSON representation
Language detector that works universally (browser + server) - Meant to be used with a universal framework, such as Next.js
- Host: GitHub
- URL: https://github.com/UnlyEd/universal-language-detector
- Owner: UnlyEd
- License: mit
- Created: 2019-12-29T22:52:29.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-23T13:09:29.000Z (over 4 years ago)
- Last Synced: 2024-08-31T01:21:39.811Z (2 months ago)
- Topics: i18n, i18next, javascript-library, language, language-detection, language-detection-lib, language-detector, locale, locale-awareness, locale-detect, nextjs, nodejs-library, typescript-library
- Language: TypeScript
- Homepage: https://universal-language-detector.now.sh/
- Size: 252 KB
- Stars: 92
- Watchers: 6
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-nextjs - Next universal language detector - Language detector that works universally (browser + server) - Meant to be used with a universal framework, such as Next.js [DEMO](https://universal-language-detector.now.sh/) (Extensions)
- fucking-awesome-nextjs - Next universal language detector - Language detector that works universally (browser + server) - Meant to be used with a universal framework, such as Next.js 🌎 [DEMO](universal-language-detector.now.sh/) (Extensions)
README
[![Maintainability](https://api.codeclimate.com/v1/badges/424ff73928475fd2331f/maintainability)](https://codeclimate.com/github/UnlyEd/universal-language-detector/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/424ff73928475fd2331f/test_coverage)](https://codeclimate.com/github/UnlyEd/universal-language-detector/test_coverage)
[![Known Vulnerabilities](https://snyk.io/test/github/UnlyEd/universal-language-detector/badge.svg?targetFile=package.json)](https://snyk.io/test/github/UnlyEd/universal-language-detector?targetFile=package.json)
# Universal Language Detector> Language detector that works universally (browser + server)
>
> - On the server, will rely on "cookies > accept-language header"
> - On the browser, will rely on "cookies > navigator settings"
>
> Meant to be used with a universal framework, such as Next.jsNote that this lib helps resolving the **`language`** (`fr`, `en`, `es`, etc.), **not the locale** (`fr-FR`, `en-US`, etc.)
_It is not out of scope though, PR are welcome to support universal locale detection._
---
* [Demo](#demo)
* [Getting started](#getting-started)
* [Examples](#examples)
* [API](#api)
+ [`universalLanguageDetect`](#universallanguagedetect)
* [Contributing](#contributing)
+ [Working locally](#working-locally)
+ [Test](#test)
+ [Versions](#versions)
- [SemVer](#semver)
+ [Releasing and publishing](#releasing-and-publishing)
* [Changelog](#changelog)
* [License](#license)
- [Vulnerability disclosure](#vulnerability-disclosure)
- [Contributors and maintainers](#contributors-and-maintainers)
- [**[ABOUT UNLY]**](#about-unly-)---
## Demo
[Live demo with the Next.js example](https://universal-language-detector.now.sh/)
## Getting started
```
yarn install @unly/universal-language-detector
```Use:
```
import universalLanguageDetect from '@unly/universal-language-detector';OR
import { universalLanguageDetect } from '@unly/universal-language-detector';
```## Examples
See [our example](./examples/with-next) featuring the Next.js framework
---
## API
> Extensive API documentation can be found in the [source code documentation](./src/index.ts)
>
> Only the most useful API methods are documented here, the other aren't meant to be used, even though they may be### `universalLanguageDetect`
> Detects the language used, universally.
**Parameters:**
- `supportedLanguages`: string[];
- `fallbackLanguage`: string;
- `acceptLanguageHeader?`: string | undefined;
- `serverCookies?`: object | undefined;
- `errorHandler?`: [ErrorHandler](./src/utils/error.ts) | undefined;**Example:**
```js
const lang = universalLanguageDetect({
supportedLanguages: SUPPORTED_LANGUAGES, // Whitelist of supported languages, will be used to filter out languages that aren't supported
fallbackLanguage: FALLBACK_LANG, // Fallback language in case the user's language cannot be resolved
acceptLanguageHeader: get(req, 'headers.accept-language'), // Optional - Accept-language header will be used when resolving the language on the server side
serverCookies: cookies, // Optional - Cookie "i18next" takes precedence over navigator configuration (ex: "i18next: fr"), will only be used on the server side
errorHandler: (error) => { // Optional - Use you own logger here, Sentry, etc.
console.log('Custom error handler:');
console.error(error);
},
});
```---
## Contributing
We gladly accept PRs, but please open an issue first so we can discuss it beforehand.
### Working locally
```
yarn start # Shortcut - Runs linter + build + tests in concurrent mode (watch mode)OR run each process separately for finer control
yarn lint
yarn build
yarn test
```### Test
```
yarn test # Run all tests, interactive and watch mode
yarn test:once
yarn test:coverage
```### Versions
#### SemVer
We use Semantic Versioning for this project: https://semver.org/. (`vMAJOR.MINOR.PATCH`: `v1.0.1`)
- Major version: Must be changed when Breaking Changes are made (public API isn't backward compatible).
- A function has been renamed/removed from the public API
- Something has changed that will cause the app to behave differently with the same configuration
- Minor version: Must be changed when a new feature is added or updated (without breaking change nor behavioral change)
- Patch version: Must be changed when any change is made that isn't either Major nor Minor. (Misc, doc, etc.)### Releasing and publishing
```
yarn releaseAndPublish # Shortcut - Will prompt for bump version, commit, create git tag, push commit/tag and publish to NPMyarn release # Will prompt for bump version, commit, create git tag, push commit/tag
npm publish # Will publish to NPM
```> Don't forget we are using SemVer, please follow our SemVer rules.
**Pro hint**: use `beta` tag if you're in a work-in-progress (or unsure) to avoid releasing WIP versions that looks legit
---
## Changelog
> Our API change (including breaking changes and "how to migrate") are documented in the Changelog.
See [changelog](./CHANGELOG.md)
---
## License
MIT
---
> This project was generated using https://github.com/UnlyEd/boilerplate-generator/tree/master/templates/typescript-OSS
# Vulnerability disclosure
[See our policy](https://github.com/UnlyEd/Unly).
---
# Contributors and maintainers
This project is being maintained by:
- [Unly] Ambroise Dhenain ([Vadorequest](https://github.com/vadorequest)) **(active)**---
> [Unly](https://unly.org) is a socially responsible company, fighting inequality and facilitating access to higher education.
> Unly is committed to making education more inclusive, through responsible funding for students.We provide technological solutions to help students find the necessary funding for their studies.
We proudly participate in many TechForGood initiatives. To support and learn more about our actions to make education accessible, visit :
- https://twitter.com/UnlyEd
- https://www.facebook.com/UnlyEd/
- https://www.linkedin.com/company/unly
- [Interested to work with us?](https://jobs.zenploy.io/unly/about)Tech tips and tricks from our CTO on our [Medium page](https://medium.com/unly-org/tech/home)!
#TECHFORGOOD #EDUCATIONFORALL