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

leviosajs

v1.2.56

Published

This is CLI helps you create components faster

Downloads

58

Readme

leviosajs node npm

leviosa

It's LEVIOSA, not leviosaaah!

  • This CLI helps you to bundle react components and aplications faster from the terminal. :rocket:
  • Much like create-react-app but faster, simpler, lighter and with a few more helpers!

Features and Technologies included

HOW TO INSTALL

  • npm install --global leviosajs

or using yarn

  • yarn global add leviosajs

Commands Available

  • leviosa-new - Creates a react application :rocket:
  • leviosa-accio - Creates a component :boom:
  • leviosa-start - Starts the application :smiley:
  • leviosa-build - Builds the applicaiton to production :sunglasses:
  • leviosa-test - Runs our test suites :+1:

HOW TO USE THEM

leviosa-new
  • It receives an argument, what will be the name of the application. Let's say we want to create a reactjs application with the name created-with-leviosajs, All we have to do is: $ leviosa-new created-with-leviosajs It will bundle all the application and will open it on browser.
leviosa-accio
  • It will ask for an input, what will be the name of the component we want to build. Let's say we want to create a new component named Header within our already built reactjs application. Run the command: $ leviosa-accio header and it will bundle a functional component named Header and its styles within appName/src/components/Header/index.js (Don't worry if you don't have the folder components, if non existent, it will be created automatically) obs: you should be within your app's directory
leviosa-start
  • This command will start our application. You can pass a --production flag and run the production build locally.
leviosa-build
  • It builds our application in production mode, so we can use it
leviosa-test
  • It runs all our test suites