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-meanjs-table

v0.0.2

Published

MEAN.JS Table Yeoman Generator

Downloads

6

Readme

MEANJS-TABLE

meanjs-table is a yeoman generator based on the great meanjs generator. As the MEAN.JS Team says:

MEAN.JS is a full-stack JavaScript open-source solution, which provides a solid starting point for MongoDB, Node.js, Express, and AngularJS based applications. The idea is to solve the common issues with connecting those frameworks, build a robust framework to support daily development needs, and help developers use better practices while working with popular JavaScript components.

Overview

The meanjs generator displays database records like a blog structure. However, when we are developing enterprise applications, it's common that when we create new entities we have to display them in a table form, and from this table we should be able to perform CRUD operations. I have adapted the crud-module subgenerator, so when you create a new module it's created in a table form from where you can create, read, update and remove each database record.

Note: meanjs-table generator uses angular-formly to display forms so, as we will see below, it's very easy and very fast adapt our forms to our entities.

Video Tutorial

MEANJS Table

Getting Started

At first place, you will need to install the meanjs-table generator:

$ npm install -g generator-meanjs-table

You have to create a new folder for your project and from this folder you will generate your application:

$ yo meanjs-table

Next, you will create a new entity:

$ yo meanjs-table:crud-module <module-name>

This will create both AngularJS and Express files supporting full CRUD functionality.

This subgenerator will create an entity with only one property called 'name'. If we want to add new properties to our entity, we weed to follow these three steps:

  • Add new properties to the Mongoose Schema in app/models/module-name.server.model.js
  • Add new properties to the angular-formly array properties in public/modules/module-name/services/module-name.form.client.service.js
  • Add new columns for the new properties in the HTML table in public/modules/module-name/views/list-module-name.client.view.html

License

BSD license