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-tmj

v1.0.3

Published

TMJ yeoman generator

Downloads

13

Readme

generator-tmj

TMJ Yeoman generators of AngularJS and Laravel modules based on TMJP Web Development team approach.

Getting Started

You will need to install yeoman using npm. Be sure to have NodeJS installed before doing it so.

npm install yo -g

Locally

You need to download or clone this to a new project folder locally name it generator-tmj. Then in git shell.

git clone https://github.com/spartangian/generator-tmj.git > generator-tmj

Go to root directory of this project, then type:

npm link

That will install this generator dependencies and symlink a global module to your local file. After npm is done your good to go to your project.

Globally

Or if you don't want to download you can just install it using npm.

npm install generator-tmj -g

Usage

In your project you can create now a module.

When using this generator it is expected that you already a have angular-resource.

Core Modules

To get the core modules

Both Laravel and Angular Module

if you are in the root directory of your project you can type:

yo tmj

to include core modules in your app or to specify the location of your app.

yo tmj <path/appName>

Angular

to get only the core module of angular app

yo tmj:angular-core <path/appName>

Laravel (not yet implemented)

to get only the core module of laravel app

yo tmj:laravel-core <path/appName>
  • <path/appName> - is optional it points to the root location of your app. ( not yet implemented )

Adding Feature

Laravel (not yet implemented)

To create a feature module in laravel.

yo tmj:laravel <name>

Angular

To create a feature module in angular.

yo tmj:angular <name>

Both Laravel and Angular

To create a feature module for laravel and angular. (Currently only angular feature module is only created on this stage)

yo tmj:module <name>
  • name - required. name of the feature you will add. If the name is with spaces you should enclosed it with "this is name".

Separated Feature

TMJ generator also supports creation of separated features

Angular Module

To create a angular module file that follows the standard of TMJ.

yo tmj:angular-module <name>

Angular Controller

To create a angular controller

yo tmj:angular-controller <moduleName> --name="Name of the Controller"
  • moduleName - required. name of feature module/ angular module.
  • --name - optional. The name of the controller. If this is null the name of the controller will depend on the moduleName

Angular Factory

To create a angular factory

yo tmj:angular-factory <moduleName> --name="Name of the factory"
  • moduleName - required. name of feature module/ angular module.
  • --name - optional. The name of the factory. If this is null the name of the factory will depend on the moduleName.

Credits

John Papa Angular Style Guide TMJP Web Development Team.

License

The MIT License

Copyright (c) 2016 TMJ Philippines