https://github.com/nikos/material-ui-bottomnav
Bottom navigation for material-ui react project.
https://github.com/nikos/material-ui-bottomnav
Last synced: 3 months ago
JSON representation
Bottom navigation for material-ui react project.
- Host: GitHub
- URL: https://github.com/nikos/material-ui-bottomnav
- Owner: nikos
- Created: 2015-12-13T16:24:53.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-21T22:30:26.000Z (over 9 years ago)
- Last Synced: 2025-01-13T06:22:30.346Z (4 months ago)
- Language: JavaScript
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [Material-UI](http://callemall.github.io/material-ui/) - Example Project
This is an example project that uses [Material-UI](http://callemall.github.io/material-ui/)
and adds a new component which allows to display a navigation on the bottom.
This project is based on the `browserify-gulp-example` from material-ui.## Installation
After cloning the repository, install dependencies:
```
cd
npm install
```Now you can run your local server:
```
npm start
```### Description of [Gulp](https://github.com/gulpjs/gulp) Plugins
#### [browserify](https://github.com/substack/node-browserify)
Browsers do not allow us to use the require method from Node.js. With browserify, we can
implement dependency management on the browser. It also will bundle the code into one file
in an efficient way to not repeat dependiencies that are used more than once.#### [browserSync](http://www.browsersync.io/)
When developing and testing the website, browserSync is a powerful tool that will rebuild
and refresh the webpage so you can see the changes you make as you are working.#### markup
Copies all of the files from `/src/www` to the `build` folder.#### [gulp_starter](https://github.com/greypants/gulp-starter)
A useful repository that explains how many of gulp's features work and contains an example
project to get familiar with it. We use this example to construct our own project.