Giter Site home page Giter Site logo

harendranathvegi9 / jumpsuit Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jsonmaur/jumpsuit

0.0 2.0 0.0 2.73 MB

A React framework for efficiently building powerful web applications -

Home Page: https://jumpsuit.js.org

License: MIT License

JavaScript 100.00%

jumpsuit's Introduction

Jumpsuit Banner

npm version Build Status npm Jumpsuit on Slack

Jumpsuit is a React framework for efficiently building powerful web applications.

Demo

Join us on Slack!

Quick Start

Install to an existing project

$ yarn add jumpsuit
# or
$ npm install --save jumpsuit

Using Create-React-App

# Create a new project with create-react-app
$ create-react-app myProjectName
$ cd myProjectName

# Install Jumpsuit
$ yarn add jumpsuit

# Start the create-react-app dev server
$ yarn start

index.js

// Import Jumpsuit
import React from 'react'
import { Render, State, Actions, Component, Effect } from 'jumpsuit'

// Create a state with some actions
const CounterState = State({
  // Initial State
  initial: { count: 0 },
  // Actions
  increment: ({ count }) => ({ count: count + 1 }),
  decrement: ({ count }) => ({ count: count - 1 })
})

// Create an async action
Effect('incrementAsync', () => {
  setTimeout(() => Actions.increment(), 1000)
})

// Create a subscribed component
const Counter = Component({
  render() {
    return (
      <div>
        <h1>{ this.props.count }</h1>
        <button onClick={ Actions.increment }>Increment</button>
        <button onClick={ Actions.decrement }>Decrement</button>
        <br />
        <button onClick={ Actions.incrementAsync }>Increment Async</button>
      </div>
    )
  }
}, (state) => ({
  // Subscribe to the counter state (will be available via this.props.counter)
  count: state.counter.count
}))

// Compose the global state
const globalState = { counter: CounterState }

// Render your app!
Render(globalState, <Counter/>, 'app')

Live Example on WebpackBin

FAQ

  • What does the Jumpsuit core include?
    • State Management powered by Jumpstate & Redux
    • Routing (React-Router)
    • Rendering/Bootstrapping
    • Hot State Reloading
  • Can I use it with Create React App?
    • You bet! We have an example you can view or drop right into your src directory!
  • But I've already built an app! Can I still use Jumpsuit?
    • Of course! Jumpsuit is not an all or nothing framework and has many levels of buy-in for usefulness. You can easily migrate small parts of your app to use Jumpsuit using only the pieces you need.
  • I love the state management in Jumpsuit, so can I just use that?
    • Of course! Head over to Jumpstate to get started!

Badge

Using Jumpsuit in your project? Show it off!

built with jumpsuit

[![built with jumpsuit](https://img.shields.io/badge/built%20with-jumpsuit-3A54AD.svg)](https://github.com/jumpsuit/jumpsuit)

Tutorial

Examples

Team

Tanner Linsley Jason Maurer
Tanner Linsley Jason Maurer

Used By

Nozzle Logo

License

MIT © Jumpsuit

jumpsuit's People

Contributors

adrianmcli avatar ajwinkworth avatar andrefgneves avatar arnisl avatar brunoskonrad avatar gitter-badger avatar jonhallur avatar kirushik avatar madsn avatar rabialam avatar robinbentley avatar tannerlinsley avatar voku avatar zolrath avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.