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

jollof-cli

v1.6.14

Published

The Entry point to creating and working with Jollof Projects

Downloads

31

Readme

JollofJS

The tastiest NodeJS Application Framework you ever ate.

jollof Logo

Key Features

  • Convention over configuration... ...Because you have better things to do with your time. But JollofJS is still very configurable.

  • *Full support for ES7 Async/Await * Free yourself from the oppressive/convoluted regime of callbacks and use awesome yieldables/awaitables through ES6 Promises, and Async Await. Powered by KoaJS.

  • Built-in Admin User Interface Ever wondered why something like Django Admin doesn't exist for NodeJS? Well with JollofJS, it does now. Administer your site's data with the built-in Jollof Admin (built from scratch using React). E.g You could whip up a blog for your Application and use Jollof Admin as a simple CMS backend for that blog. The options are endless!

  • Environment-based Configuration Tree JollofJS has a custom-built config system that makes it easy to have different configurations per node.ENV. Base configuration can easily be overwritten by environmental configs (i.e. development, test, production, etc).

  • And More!...

Getting Started

npm i -g jollof-cli

You also need to have mongoDB and Redis up and running.

Create your JollofJS app with:

jollof new myApp

Before you run your app, create an admin user:

cd myApp
jollof run createAdmin [email protected] password

Now you are ready to run your jollof app:

npm start

You should now be able to see jollof running at localhost:3000.

jollof home

App structure

You are highly advised to study the structure of this new app, starting from index.js.

Jollof Admin

To enter the Jollof admin, you have to login with that admin user you created before launching the app.

jollof admin

Editing an item in the Admin...

jollof edit

The Jollof Admin is, quite frankly, the Saber's edge of any NodeJS framework in existence today. Jollof Admin automatically creates a user interface to administer all your models, as well as in-built models. It supports all the usual field types you find in an other admins, and then some! Including:

  • Arrays (Of ANY field type)
  • Objects, (Of ANY combination of field types)
  • Files,
  • GeoLocations

Right now, the app you created has only one model User.

See the Jollof docs for how to work with Models.