Socket
Socket
Sign inDemoInstall

@payhos/theme-plugin

Package Overview
Dependencies
80
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @payhos/theme-plugin

The plugin for creating, maintaining and publishing themes in the PayHos themes marketplace


Version published
Weekly downloads
21
increased by90.91%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

PayHos Theme Plugin

PayHos Theme plugin package is built by EmbyBest Concept Nig. Ltd to assist other developers to easily build, maintain and published their own developed themes in the PayHos themes marketplace. It is tested with Node.js and can easily be adapted to other JavaScript-based environments easily.

Installation

Install package via npm by running the following command:

npm install @payhos/theme-plugin --save-dev

Usage

The theme plugin is associated with a node.js server which helps developer create, sync and update theme labels created during the course of theme development. To start the plugin server, run the following command:

node node_modules/@payhos/theme-plugin/dev/server

With the command above, a node.js server is started running on localhost, port 5001 and can be accessed via http://localhost:5001. With this developer-facing interface, you can update and delete the contents of labels as desired.

import { ThemePluginClient } from '@payhos/theme-plugin';

const credentials = {
 themeId: `THEME_ID`,
 secret: `THEME_SECRET_KEY`
};

const client = new ThemePluginClient(credentials);

Use ThemePluginClient to get the plugin proxy object on which any keyed label can be invoked.

client.init().then(plugin => {
  // plugin received here is used to read labels into your templates and user-facing texts/sentences.
  console.log(plugin);
}).catch(e => {
  console.error(e);
});

To read labels that can be translated later, use the plugin variable received from the promise above as follows:

let welcomeText = plugin.welcome_text;

The variable welcomeText created above invokes the creation of the welcome_text label which whose real rext value can be updated in the node.js plugin server running on http://localhost:5001 as noted above.

Keywords

FAQs

Last updated on 09 Aug 2020

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc