Code Monkey home page Code Monkey logo

slush-react-ts's Introduction

Slush React Native TypeScript generator Build Status NPM version

Use this generator to create a basic React Native app with TypeScript support (ie. TSX).

This generator is based on the seed project ReactNativeTS

For info on using TSX

Editor/IDE

We recommend using Visual Studio Code with plugins:

Be sure to follow VSC Updates

Getting Started

Install slush-react-ts globally:

$ npm install -g slush-react-ts

Usage: React Native

The default generator configures a React Native app for TypeScript

Create a react-native app using the CLI app generator:

projects $ react-native init my-app

Run the slush generator from within the folder of your react-native app:

projects $ cd my-app
my-app $ slush react-ts

The generator will:

  1. Delete the default generated index.ios.js and index.android.js
  2. Create
/src
    /native
        /components
    index.ios.tsx
    index.android.tsx

Your TypeScript config should then be configured to compile all files in /src folder to a target folder such as build.

Troubleshooting

If you get the error You must run this generator inside a project created with react-native-cli make sure you are running the generator from a folder with an ios or android folder (or both).

These folders contain the native parts of your app for each supported native environment. The folders are (usually) generated by react-native CLI app generator)

Make sure you have a recent (2016+) react-native-cli binary installed globally. We recommend using version 0.1.10 or higher

$ npm view react-native-cli version
0.1.8

Install react-native-cli

$ npm uninstall -g react-native-cli
$ npm install -g react-native-cli

Sub generators

Currently we have TypeScript sub-generators for:

  • redux : configure app for using Redux
  • redux-model : create full Redux domain model setup
  • webpack : configure webpack
  • web : create react web app

Usage example: $ slush react-ts:redux

Feel free to suggest and contribute with more/better generators!

Redux

Configures the src folder for Redux as follows:

/flux
    /actions
        /__spec__
    /constants
    /models
    /reducers
        /__spec__
        rootReducer.ts

/native
    /components
    /containers

/web
    /components
    /containers

The __spec__ folders contain specs (tests).

Redux model

  1. Asks for a model name (default: todo)
  2. Asks for platforms to generate for (web, native)

For a todo model, it will create the following flux files:

/flux
    /actions
        /__spec__
            todos-spec.ts
        todos.ts
    /constants
        todos.ts
    /models
        todos.ts
    /reducers
        /__spec__
          todos-spec.ts
        todos.ts

For native platform

/native
    /components
        TodoItem.tsx
        TodoList.tsx
    /containers
        TodoContainer.tsx

Similar layout for the web platform.

Web TodoList will render a ul DOM element

Native TodoList renders a ListView of the domain model with a data source (using mock data).

On any platform, TodoList will render each row using a TodoItem component, passing the row data into props using spread operator.

Contributing

See the CONTRIBUTING Guidelines

  1. Fork and clone the repo
  2. Use npm link to install locally
  3. Run generator as decribed above
  4. Debug, fix and improve

Support

If you have any problem or suggestion please open an issue here.

Slush

To find out more about Slush, check out the documentation.

License

The MIT License

Copyright (c) 2016, Kristian Mandrup

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

slush-react-ts's People

Contributors

kristianmandrup avatar

Stargazers

Atsushi Araki avatar  avatar Lawrence Cushman avatar José Dulanto avatar

Watchers

 avatar James Cloos 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.