Compare commits

..

17 Commits

Author SHA1 Message Date
62b28f3feb update description 2024-05-29 14:17:20 +02:00
329add7000 3.0.4 2024-04-30 17:50:58 +02:00
be2082e728 fix(core): update 2024-04-30 17:50:57 +02:00
2f3509aff6 3.0.3 2024-04-30 17:50:15 +02:00
a866fce716 fix(core): update 2024-04-30 17:50:14 +02:00
dc8a3944d5 3.0.2 2024-04-30 17:49:26 +02:00
46602bcb44 fix(core): update 2024-04-30 17:49:25 +02:00
343c7dbe8b update tsconfig 2024-04-14 18:35:53 +02:00
3a2d1f67b2 update tsconfig 2024-04-01 21:42:23 +02:00
d59385c339 update npmextra.json: githost 2024-04-01 20:00:08 +02:00
42abd689d3 update npmextra.json: githost 2024-03-30 21:49:09 +01:00
e49ee755d7 3.0.1 2022-05-20 15:26:53 +02:00
faa88ab8a8 fix(core): update 2022-05-20 15:26:53 +02:00
5857adf6fe 3.0.0 2022-05-20 15:22:57 +02:00
365511fee3 BREAKING CHANGE(core): switch to esm 2022-05-20 15:22:56 +02:00
c7899742fe 2.0.5 2020-10-26 11:39:22 +00:00
268224529b fix(core): update 2020-10-26 11:39:22 +00:00
14 changed files with 12680 additions and 8904 deletions

View File

@ -12,6 +12,9 @@ stages:
- release
- metadata
before_script:
- npm install -g @shipzone/npmci
# ====================
# security stage
# ====================
@ -36,6 +39,7 @@ auditProductionDependencies:
- npmci command npm audit --audit-level=high --only=prod --production
tags:
- docker
allow_failure: true
auditDevDependencies:
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
@ -96,10 +100,9 @@ codequality:
only:
- tags
script:
- npmci command npm install -g tslint typescript
- npmci command npm install -g typescript
- npmci npm prepare
- npmci npm install
- npmci command "tslint -c tslint.json ./ts/**/*.ts"
tags:
- lossless
- docker
@ -120,7 +123,7 @@ pages:
stage: metadata
script:
- npmci node install lts
- npmci command npm install -g @gitzone/tsdoc
- npmci command npm install -g @git.zone/tsdoc
- npmci npm prepare
- npmci npm install
- npmci command tsdoc

24
.vscode/launch.json vendored
View File

@ -2,28 +2,10 @@
"version": "0.2.0",
"configurations": [
{
"name": "current file",
"type": "node",
"command": "npm test",
"name": "Run npm test",
"request": "launch",
"args": [
"${relativeFile}"
],
"runtimeArgs": ["-r", "@gitzone/tsrun"],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": "test.ts",
"type": "node",
"request": "launch",
"args": [
"test/test.ts"
],
"runtimeArgs": ["-r", "@gitzone/tsrun"],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
"type": "node-terminal"
}
]
}

View File

@ -6,12 +6,26 @@
"gitzone": {
"projectType": "npm",
"module": {
"githost": "gitlab.com",
"gitscope": "pushrocks",
"githost": "code.foss.global",
"gitscope": "push.rocks",
"gitrepo": "smartyaml",
"shortDescription": "handle yaml in smart ways",
"npmPackagename": "@pushrocks/smartyaml",
"license": "MIT"
"description": "A module for smart handling of YAML data with support for converting between YAML strings and JavaScript objects.",
"npmPackagename": "@push.rocks/smartyaml",
"license": "MIT",
"keywords": [
"YAML",
"JavaScript",
"data serialization",
"conversion",
"js-yaml",
"TypeScript",
"nodejs",
"parsing",
"stringify"
]
}
},
"tsdoc": {
"legal": "\n## License and Legal Information\n\nThis repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository. \n\n**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.\n\n### Trademarks\n\nThis project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.\n\n### Company Information\n\nTask Venture Capital GmbH \nRegistered at District court Bremen HRB 35230 HB, Germany\n\nFor any legal inquiries or if you require further information, please contact us via email at hello@task.vc.\n\nBy using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.\n"
}
}

16528
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,38 +1,45 @@
{
"name": "@pushrocks/smartyaml",
"version": "2.0.4",
"name": "@push.rocks/smartyaml",
"version": "3.0.4",
"private": false,
"description": "handle yaml in smart ways",
"description": "A module for smart handling of YAML data with support for converting between YAML strings and JavaScript objects.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web)"
"build": "(tsbuild --web --allowimplicitany)"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/pushrocks/smartyaml.git"
"url": "https://code.foss.global/push.rocks/smartyaml.git"
},
"keywords": [
"yaml",
"lossless"
"YAML",
"JavaScript",
"data serialization",
"conversion",
"js-yaml",
"TypeScript",
"nodejs",
"parsing",
"stringify"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartyaml/issues"
},
"homepage": "https://gitlab.com/pushrocks/smartyaml#README",
"homepage": "https://code.foss.global/push.rocks/smartyaml",
"dependencies": {
"@types/js-yaml": "^3.12.5",
"js-yaml": "^3.14.0"
"yaml": "^2.4.2"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tsrun": "^1.2.12",
"@gitzone/tstest": "^1.0.52",
"@pushrocks/tapbundle": "^3.2.9",
"@types/node": "^14.14.3"
"@git.zone/tsbuild": "^2.1.61",
"@git.zone/tsrun": "^1.2.32",
"@git.zone/tstest": "^1.0.71",
"@push.rocks/tapbundle": "^5.0.3",
"@types/node": "^20.12.7"
},
"browserslist": [
"last 1 chrome versions"
@ -49,4 +56,4 @@
"npmextra.json",
"readme.md"
]
}
}

4737
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

1
readme.hints.md Normal file
View File

@ -0,0 +1 @@

151
readme.md
View File

@ -1,47 +1,134 @@
# @pushrocks/smartyaml
handle yaml in smart ways
# @push.rocks/smartyaml
Handle YAML in smart ways.
## Availabililty and Links
* [npmjs.org (npm package)](https://www.npmjs.com/package/@pushrocks/smartyaml)
* [gitlab.com (source)](https://gitlab.com/pushrocks/smartyaml)
* [github.com (source mirror)](https://github.com/pushrocks/smartyaml)
* [docs (typedoc)](https://pushrocks.gitlab.io/smartyaml/)
## Install
To use @push.rocks/smartyaml in your project, you need to install it using npm or yarn. Run the following command in your project directory:
## Status for master
```bash
npm install @push.rocks/smartyaml --save
```
or if you prefer yarn:
```bash
yarn add @push.rocks/smartyaml
```
Status Category | Status Badge
-- | --
GitLab Pipelines | [![pipeline status](https://gitlab.com/pushrocks/smartyaml/badges/master/pipeline.svg)](https://lossless.cloud)
GitLab Pipline Test Coverage | [![coverage report](https://gitlab.com/pushrocks/smartyaml/badges/master/coverage.svg)](https://lossless.cloud)
npm | [![npm downloads per month](https://badgen.net/npm/dy/@pushrocks/smartyaml)](https://lossless.cloud)
Snyk | [![Known Vulnerabilities](https://badgen.net/snyk/pushrocks/smartyaml)](https://lossless.cloud)
TypeScript Support | [![TypeScript](https://badgen.net/badge/TypeScript/>=%203.x/blue?icon=typescript)](https://lossless.cloud)
node Support | [![node](https://img.shields.io/badge/node->=%2010.x.x-blue.svg)](https://nodejs.org/dist/latest-v10.x/docs/api/)
Code Style | [![Code Style](https://badgen.net/badge/style/prettier/purple)](https://lossless.cloud)
PackagePhobia (total standalone install weight) | [![PackagePhobia](https://badgen.net/packagephobia/install/@pushrocks/smartyaml)](https://lossless.cloud)
PackagePhobia (package size on registry) | [![PackagePhobia](https://badgen.net/packagephobia/publish/@pushrocks/smartyaml)](https://lossless.cloud)
BundlePhobia (total size when bundled) | [![BundlePhobia](https://badgen.net/bundlephobia/minzip/@pushrocks/smartyaml)](https://lossless.cloud)
Platform support | [![Supports Windows 10](https://badgen.net/badge/supports%20Windows%2010/yes/green?icon=windows)](https://lossless.cloud) [![Supports Mac OS X](https://badgen.net/badge/supports%20Mac%20OS%20X/yes/green?icon=apple)](https://lossless.cloud)
This will add @push.rocks/smartyaml to your project's dependencies and enable you to start using the library to handle YAML data in a smart way.
## Usage
Use TypeScript for best in class instellisense.
To utilize @push.rocks/smartyaml in your TypeScript project, simply import the desired functionality from the package. This library streamlines YAML data handling by providing straightforward functions for converting YAML strings to objects and vice versa. Let's dive into how you can leverage these capabilities in your applications.
For further information read the linked docs at the top of this README.
### Basic Conversion: YAML String to JavaScript Object
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
> | By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html)
Imagine you're building an application that needs to process configuration files stored in YAML format. With @push.rocks/smartyaml, converting these YAML strings into JavaScript objects for easy manipulation is a breeze.
[![repo-footer](https://pushrocks.gitlab.io/assets/repo-footer.svg)](https://push.rocks)
First, here's how you import the function to convert a YAML string to a JavaScript object:
```typescript
import { yamlStringToObject } from '@push.rocks/smartyaml';
```
## Contribution
Assuming you have a YAML string like this:
We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :)
```yaml
name: John Doe
age: 30
address:
street: 1234 Somewhere Street
city: Anytown
zip: '12345'
```
For further information read the linked docs at the top of this readme.
You can convert it to a JavaScript object as follows:
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
```typescript
const yamlExample = `
name: John Doe
age: 30
address:
street: 1234 Somewhere Street
city: Anytown
zip: '12345'
`;
[![repo-footer](https://lossless.gitlab.io/publicrelations/repofooter.svg)](https://maintainedby.lossless.com)
async function convertYamlToObject() {
try {
const yamlObject = await yamlStringToObject(yamlExample);
console.log(yamlObject);
/*
* Output:
* {
* name: 'John Doe',
* age: 30,
* address: { street: '1234 Somewhere Street', city: 'Anytown', zip: '12345' }
* }
*/
} catch (error) {
console.error(`Error converting YAML to object: ${error}`);
}
}
convertYamlToObject();
```
### Converting JavaScript Objects back into YAML Strings
Let's say you've now manipulated your configuration data, and you want to save these changes back in a YAML file. @push.rocks/smartyaml provides a handy function for that:
```typescript
import { objectToYamlString } from '@push.rocks/smartyaml';
```
Considering you have a JavaScript object like this:
```typescript
const jsObject = {
name: 'John Doe',
age: 30,
address: {
street: '1234 Somewhere Street',
city: 'Anytown',
zip: '12345'
}
};
```
You can convert it to a YAML string as follows:
```typescript
async function convertObjectToYaml() {
try {
const yamlString = await objectToYamlString(jsObject);
console.log(yamlString);
/*
* Output:
* "name: John Doe\nage: 30\naddress:\n street: 1234 Somewhere Street\n city: Anytown\n zip: '12345'\n"
*/
} catch (error) {
console.error(`Error converting object to YAML: ${error}`);
}
}
convertObjectToYaml();
```
These simple examples illustrate how @push.rocks/smartyaml greatly simplifies the process of converting between YAML strings and JavaScript objects, making it a valuable tool for managing configuration files or any data stored in YAML format in your TypeScript project.
## License and Legal Information
This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository.
**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.
### Trademarks
This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.
### Company Information
Task Venture Capital GmbH
Registered at District court Bremen HRB 35230 HB, Germany
For any legal inquiries or if you require further information, please contact us via email at hello@task.vc.
By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.

View File

@ -1,6 +1,6 @@
import { expect, tap } from '@pushrocks/tapbundle';
import { expect, tap } from '@push.rocks/tapbundle';
import * as smartyaml from '../ts/index';
import * as smartyaml from '../ts/index.js';
let yamlString = `someKey: someValue
someKey2: someValue2
@ -8,21 +8,21 @@ someKey2: someValue2
tap.test('should convert yaml string to object', async () => {
let myObject = await smartyaml.yamlStringToObject(yamlString);
expect(myObject.someKey).to.equal('someValue');
expect(myObject.someKey2).to.equal('someValue2');
expect(myObject.someKey).toEqual('someValue');
expect(myObject.someKey2).toEqual('someValue2');
});
tap.test('should convert an object to a string', async () => {
let myObject = await smartyaml.yamlStringToObject(yamlString);
let myString = await smartyaml.objectToYamlString(myObject);
expect(myString).to.equal(yamlString);
expect(myString).toEqual(yamlString);
});
// test some behaviours
tap.test('should allow dots in key', async () => {
let testString = `myKey.with.dots: some`;
let testObject = await smartyaml.yamlStringToObject(testString);
expect(testObject['myKey.with.dots']).to.equal('some');
expect(testObject['myKey.with.dots']).toEqual('some');
});
tap.start();

8
ts/00_commitinfo_data.ts Normal file
View File

@ -0,0 +1,8 @@
/**
* autocreated commitinfo by @pushrocks/commitinfo
*/
export const commitinfo = {
name: '@push.rocks/smartyaml',
version: '3.0.4',
description: 'A module for smart handling of YAML data with support for converting between YAML strings and JavaScript objects.'
}

View File

@ -1,15 +1,17 @@
import * as plugins from './smartyaml.plugins';
import * as plugins from './smartyaml.plugins.js';
export let yamlStringToObject = async (
yamlStringArg,
optionsArg: plugins.jsYaml.LoadOptions = {}
yamlStringArg: string,
): Promise<any> => {
return plugins.jsYaml.safeLoad(yamlStringArg);
return plugins.yaml.parse(yamlStringArg);
};
export let objectToYamlString = async (
objectArg,
optionsArg: plugins.jsYaml.DumpOptions = {}
objectArg
): Promise<string> => {
return plugins.jsYaml.safeDump(objectArg);
return plugins.yaml.stringify(objectArg);
};
export let getYamlDocFromString = async (stringArg: string) => {
return plugins.yaml.parseDocument(stringArg);
}

View File

@ -1,3 +1,3 @@
import * as jsYaml from 'js-yaml';
import * as yaml from 'yaml';
export { jsYaml };
export { yaml };

14
tsconfig.json Normal file
View File

@ -0,0 +1,14 @@
{
"compilerOptions": {
"experimentalDecorators": true,
"useDefineForClassFields": false,
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"verbatimModuleSyntax": true
},
"exclude": [
"dist_*/**/*.d.ts"
]
}

View File

@ -1,17 +0,0 @@
{
"extends": ["tslint:latest", "tslint-config-prettier"],
"rules": {
"semicolon": [true, "always"],
"no-console": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"member-ordering": {
"options":{
"order": [
"static-method"
]
}
}
},
"defaultSeverity": "warning"
}