pipe-services

This module provides a service library that can be used by react projects using the node module pipe-automater.

Usage no npm install needed!

<script type="module">
  import pipeServices from 'https://cdn.skypack.dev/pipe-services';
</script>

README

pipe-services

This module provides a service library that can be used by react projects using the node module pipe-automater.

Get started

  1. Create an app with pipe-automater
  2. $ npm install pipe-services
  3. Use services when needed

Usage

I18n

Import and initialize i18n service with the .i18n.json file you want to use.

import { I18n } from 'pipe-services';
import i18File from './YourFileName.i18n.json';
const i18n = new I18n(i18nFile);

// Get translation of string with give id in the current system language
console.log(i18n.translate('hello'));
// Get translation with giving an option array to substitute each variable in {} included in the string 
console.log(i18n.translate('hello', ['planet']));

Hoc

Higher order components for components, modules and views. They are also used when running $ npm run add inside the template