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

generator-finesse

v0.1.2

Published

Finesse stack project generator.

Downloads

12

Readme

generator-finesse npm versionBuild Status

Finesse Stack yeoman generators.

The finesse stack is the MEAN Stack, but replacing angular with Mithril Js. The goal is to achieve a powerful, yet simple stack for rapid and effective development.

Installation

If you dont have Yeoman installed, install it now:

npm install -g yo

Install the generator with:

npm install -g generator-finesse

Usage

Generators:

New Project

To generate a new project:

yo finesse <project-name>

This will create a folder called <project-name> with the directory structure:

.
├── .babelrc
├── .yo-rc.json
├── README.md
├── client
│   └── index.js
├── package.json
├── public
│   └── index.html
├── server
│   └── server.js
└── webpack.config.js

Provided commands are:

  • npm start to run the server
  • npm run build to build the client one time
  • npm run dev:client to build the client with a watcher
  • npm run dev:server to run the server with a watcher

nodemon must be installed globally or manually via npm install --save-dev nodemon to use the server watcher

Views

To generate a new view:

yo finesse:view <view-name>

This will create a new view: client/views/<view-name>.js

Stores and Reducers (Redux)

To create a reducer:

yo finesse:reducer <reducer-name>

This will create a reducer in: client/state/<reducer-name>Reducer.js. If there was no store implemented by the generator previously, it will create a composite reducer containing the one you just created (via combineReducers). Any additional reducers generated will be automatically added to the store, if it uses combineReducers() and has the appropriate /* REDUCERS START */ and /* REDUCERS END */. If neither of these conditions are met, the reducer will still be generated and you will need to manually add the reducer to your store.

If you wish to create a simple store + single reducer, run:

yo finesse:store

to create a store with an in-line reducer.

REST Endpoints

To create a new rest endpoint:

yo finesse:rest <name> -v <version>

This generator creates/modifies the following files as necessary:

  • server.js
  • server/api/index.js
  • server/api/<version>/index.js
  • server/api/<version>/<name>

When the file exists, it will modify files by inserting middleware code between /* MIDDLEWARE START */ and /* MIDDLEWARE END */ comments. If the files exist without the comments, you will need to add the middleware manually.

License

MIT © Frank V