shared-node

1.0.8 • Public • Published

Welcome to shared-node!

Directly call a function or method of a remote object that can be shared with any frontend frameworks.

Installation

npm install shared-node

or

yarn add shared-node

CDN

<script  src="https://unpkg.com/shared-node/dist/index.js"></script>

Server

// Server.js
const express = require('express')
const app = express()
const bodyParser = require('body-parser')
app.use(bodyParser.json())
app.use(bodyParser.urlencoded({ extended: true }))
const cors = require('cors')
app.use(cors())
app.listen(3000)

class Person {
  constructor() {
    this.name = 'Trinmar Pogi'
  }
  run(speed) {
    return `${this.name} is running at ${speed}km/h`
  }
  eat(food) {
    return `${this.name} is eating ${food}`
  }
  talk(speech) {
    return speech
  }
}

let human = new Person('Trinmar Pogi')

// see the magic here 🧙
const { sharedCodeServer } = require('shared-node')
app.use(sharedCodeServer({ human }))

Client

async function init () {
  const { sharedCodeClient } = require('shared-node')
  // const { sharedCodeClient } = sharedNode // for CDN

  const { human } = await sharedCodeClient('http://localhost:3000')
  console.log(await  human.run(100)) // Mr. Pogi is running at 100km/h
}
init()

Join and support our Community

Web and Mobile Developers PH

[ Facebook Page | Group ]

Join and support our Community
Web and Mobile Developers PH
[ Facebook Page | Group ]

Package Sidebar

Install

npm i shared-node

Weekly Downloads

8

Version

1.0.8

License

ISC

Unpacked Size

30 kB

Total Files

8

Last publish

Collaborators

  • trinly01