Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 909 Bytes

README.md

File metadata and controls

42 lines (30 loc) · 909 Bytes

JS Shared Data

This package provides a front-end solution for the coderello/laravel-shared-data package.

Install

yarn add js-shared-data

Usage

Let's imagine that we shared such data from the backend using coderello/laravel-shared-data:

share([
    'user' => [
        'full_name' => 'Ilya Sakovich',
        'username' => 'hivokas',
        'email' => '[email protected]',
    ],
    'balance' => 120,
]);

On the front-end side we can access this data using shared() helper.

import shared from 'js-shared-data';

// retrieve the user object
const user = shared('user');

// retrieve the username from the user object
const username = shared('user.username');

// retrieve the balance
const balance = shared('balance');

// specify the default value which will be used if value for specified path doesn't exist
const status = shared('status', 'Working...');