New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-prez

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-prez

Presentation with react

latest
Source
npmnpm
Version
0.6.3
Version published
Maintainers
1
Created
Source

React-Prez

Build Status npm

Make presentations with React and Markdown!

DEMO

install

$ npm install react react-dom prop-types --save
$ npm install react-prez --save

usage

import React      from 'react'
import { render } from 'react-dom'
import { Presentation, Slide } from 'react-prez'

const contents = [
  'presentation content0',
  'presentation content1',  
]

render(
  <Presentation>
    <Slide content={ contents[0] } />
    <Slide content={ contents[1] } />
  </Presentation>,
  document.getElementById('app')
)

development

$ git clone git@github.com:kamataryo/react-prez.git
$ cd react-prez
$ npm install
$ npm test  
$ npm run build
$ npm start

release (for commiters)

$ npm version patch

WebSocket controller (alpha)

  • Open presentation in both PC and iPhone. (Have not checked with Android yet.)
  • Connect to WebSocket Server, which running ./dist/index.js on both device.
  • Authenticate with admin:admin(default) on both device.
  • Control presentation with your device. Gyro controller is Avairable.

Keywords

react

FAQs

Package last updated on 25 Jun 2017

Did you know?

Socket

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