# slap-meteor-react-admin

> ``` / $ metoer npm install / $ METEOR_OFFLINE_CATALOG=1 metoer ```

Latest version **1.0.20** (published 2017-10-26) · 0 weekly downloads

## Install

```sh
npm install slap-meteor-react-admin
pnpm add slap-meteor-react-admin
yarn add slap-meteor-react-admin
bun add slap-meteor-react-admin
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.20 |
| Published | 2017-10-26 |
| First published | 2017-10-24 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 11 |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| Maintainers | slapslap |

## Links

- npm: https://www.npmjs.com/package/slap-meteor-react-admin
- npm.io page: https://npm.io/package/slap-meteor-react-admin

## Dependencies (11)

- [uuid](https://npm.io/package/uuid.md) ^3.1.0
- [react](https://npm.io/package/react.md) ^15.6.1
- [lodash](https://npm.io/package/lodash.md) ^4.17.4
- [moment](https://npm.io/package/moment.md) ^2.18.1
- [react-dom](https://npm.io/package/react-dom.md) ^15.6.1
- [prop-types](https://npm.io/package/prop-types.md) ^15.5.10
- [babel-runtime](https://npm.io/package/babel-runtime.md) ^6.20.0
- [expo-server-sdk](https://npm.io/package/expo-server-sdk.md) ^2.3.1
- [react-router-dom](https://npm.io/package/react-router-dom.md) ^4.1.2
- [meteor-node-stubs](https://npm.io/package/meteor-node-stubs.md) ~0.2.4
- [react-addons-pure-render-mixin](https://npm.io/package/react-addons-pure-render-mixin.md) ^15.6.0

## Recent versions

- 1.0.20 (latest) — 2017-10-26
- 1.0.19 — 2017-10-26
- 1.0.18 — 2017-10-26
- 1.0.17 — 2017-10-26
- 1.0.16 — 2017-10-26
- 1.0.15 — 2017-10-26
- 1.0.14 — 2017-10-26
- 1.0.13 — 2017-10-26
- 1.0.12 — 2017-10-26
- 1.0.11 — 2017-10-26
- 1.0.10 — 2017-10-26
- 1.0.9 — 2017-10-25
- 1.0.7 — 2017-10-25
- 1.0.8 — 2017-10-25
- 1.0.6 — 2017-10-25
- … 6 more at https://npm.io/package/slap-meteor-react-admin/versions

## README

### Bootstrapping
```
/ $ metoer npm install
/ $ METEOR_OFFLINE_CATALOG=1 metoer
```

### Component Style Guide
```
export default class MyComponent extends Compoent {
  // set propTypes with 'static' keyword
  static propTypes = {
    text: PropTypes.string
  };
  
  // set defaultProps with 'static' keyword
  static defaultProps = {
    text: 'text'
  };

  constructor() {
    super();
    
    // initialization when constructed
  }
    
  state = {
    clickNumber: 0
  };
  
  animatedValue = new Animated.Value(0);
  
  componentDidMount() {
    // initialization when mounted
  }
  
  onPress = () => {
    this.setState((previousState) => {
      return {
        clickNumber: previousState.clickNumber + 1
      };
    });
  };
  
  render() {
    return (
      <View>
        <Text onPress={ this.onPress }>{ this.props.text }</Text>
      </View>
    );
  }
}
```

---
_Source: https://npm.io/package/slap-meteor-react-admin · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
