1.2.5 • Published 6 years ago

mobx-scripts v1.2.5

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

mobx-scripts

create-react-app with HMR, Mobx, SCSS modules and paths aliases without ejecting ! The project also come with react-router-v4, eslint and a standard default template.

How to use

npx create-react-app demo --scripts-version mobx-scripts
cd demo
yarn start

Hot Modules Reload (HMR)

More informations: here !

Aliases

No need to provide primary folder full path, you can use aliases !

import App from 'containers/App'
import { Flex } from 'components'
import browserHistory from '@/browserHistory'
aliaspath
@./src
components./src/components
pages./src/pages
containers./src/containers
actions./src/actions
..../src/...

Works only with templates default folders

SCSS Modules

// Component.js
import styles from './Component.scss'

return (
  <div className={styles.container}>
    ...
  </div>
)
/* Component.scss */
.container {
  width: 100%;
}

Generate scoped CSS by adding unique hash after the className. For example the class container become something like container_6YtR12e. This avoid conflicts between components and encourage more readable code.