npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

rerp

v1.0.1

Published

a react, redux template that gets you up and running in no time, bootsrapped with ParcelJS

Downloads

6

Readme

rrp

A parcel powered react, redux template, that gives you the feeling of create-react-app, but this time with fast bundling, compile and build time.

build-stats

Development

  • To get this package globally on your machine type this 👇 in your terminal.
    npm install rerp -g

OR

    npx install rerp name-of-your-app

It automatically creates a new folder wit your app name and install all the required dependencies.

  • To start using this package locally on your machine run this command in your terminal
    npm start

it pops open your browser and loads the app at this address. :point_down:

localhost:3000

  • I've installed prettier as a dependency, run the following command to format your codes.
    npm run format

Folder structure

your-app
├── build
├── node_modules
├── public
│   ├── bundled-app-icon
│   ├── index.html
│   └── css && js (bundled format)
│──src
│   ├── components
│   │   └──App.js 
│   ├── scss
│   │  └── app.css
│   │  └── global.scss
│   │  └── _variables.scss
│   ├──index.js
|   └── index.html
├── .gitignore
├── .prettierrc
├── .babelrc
├── package.json
└── README.md

I decide to go with scss files for our styles since it gives you proper flexibility when writing your styles.

You can place all your styles in the scss folder. In this package there are some base scss files already in the project,

  • The _variables.scss file houses all your variables in one file. So when you want to use any of the variables, you simply import them into the file. e.g 👇
---global.scss
        @import './variables.scss';

        body {
            background: $primary;
        }
  • You can also nest elements when using scss.
.app__base {
  margin-top: 10%;
  text-align: center;
  font-size: 30px;
  color: $text-primary;

  .logo {
    width: 200px;
    width: 200px;

    img {
      height: 100%;
      width: 100%;
    }
  }
}  

In the assets folder, you can choose to add your styles along with your images too. Your choice, really! 😊

Inside the src folder, there's a sub components folder, that's where all your components would go.

Things to note.

  • Don't worry you can use arrow functions to bind your handlers to the context of this in the constructor of your class components.
    class ClassComponent extends React.Component {
    constructor() {
        super()

        this.state = {
            clicked: 0
        }
    }

    // es6 arrow function handler
    handleClick = () => {
        const { clicked } = this.state

        this.setState({
            clicked: clicked + 1
        })
    }

    render() {
        const { clicked } = this.state
        return (
            <div>
                <button onClick={this.handleClick}>you clicked me {clicked} times</button>
            </div>
        )
    }
}