Javascript 51
Manage Inline Style using Radium
Radium is a collection of tools to manage styles in a ReactJS element. Some of the key features of Radium are as follows:- simple inline styles supports pseudo class like :hover, :focus and :active etc. Media queries for responsive design Automatic vendor prefixing like -moz, -webkit, -o and -ms to support experimental or nonstandard CSS […]
Routing using react-router module
ReactJS is an library to develop view part of a SPA – single page application.ReactJS does not provide any routing mechanism by default.We can use react-router NPM module to implement Routing in a application. The react-router NPM module can be found from following link:- https://www.npmjs.com/package/react-router In this demo, “We will learn to use react-router module […]
Getting Started With Structor Builder for ReactJS
Structor is a user interface builder for Web applications with React UI. You can learn more about structor builder from following URL:- https://github.com/ipselon/structor In this demo, “We will learn to get started with structor builder“ To install structor module as global package use following command:- npm install structor -g Now let’s clone a seed […]
Working with Grunt Browserify Task
The grunt-browserify is an NPM module to work with Browserify.It can generate browserified code that can be used by browsers. In this demo, “We will learn to create grunt task using grunt-browserify”. To demonstrate grunt-browserify module use we have created a project named GruntBrowserifyDemo. The project structure looks like following screenshot:- We need to […]