Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
yandex-domain-configs
Advanced tools
Tool for generating static domain configs.
npm install --save-dev yandex-domain-configs
npm run yandex-domain-configs [options]
-i, --input <filename> Input file
-o, --output-dir <dirname> Output directory
-s, --schema <filename> JSON Schema
-h, --help output usage information
config.base.yaml
:
# default settings
foo: 0
# objects are merged recursively when overriden
bar:
baz: 1
# domain settings override the default ones
domains:
yandex.ru
foo: 2
yandex.com
# yandex.com will inherit settings from yandex.ru
base: yandex.ru
bar:
baz: 3
config.production.yaml
:
base: config.base.yaml
# these settings override the default ones in the base config
bar:
baz: 5
# domains not listed here will be ignored
domainList:
- yandex.ru
- yandex.com
# these settings override domain settings in the base config
domains:
yandex.ru
foo: 6
config.schema.yaml
:
title: Project configuration
type: object
required:
- foo
properties:
foo:
title: Foo description
type: object
required:
- bar
properties:
bar:
title: Bar description
type: string
npm run yandex-domain-configs -i config.production.xml -o production -s config.schema.yaml
production/yandex.ru.json
:
{
"foo": 6,
"bar": {
"baz": 5
}
}
production/yandex.com.json
:
{
"foo": 6,
"bar": {
"baz": 3
}
}
FAQs
Yandex Domain Configs
The npm package yandex-domain-configs receives a total of 0 weekly downloads. As such, yandex-domain-configs popularity was classified as not popular.
We found that yandex-domain-configs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.