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

angie

v0.4.7

Published

Angie: A Module-Based NodeJS Web Application Framework in ES6

Downloads

32

Readme

emblem

A Module-Based NodeJS Web Application Framework in ES6

npm version iojs support node support npm downloads build status Coverage Status documentation

NPM

Usage

npm i -g angie
angie help

If you want your files to automatically refresh with the angie watch command, run this from the root of the Angie package:

chmod +x script/watchman.sh && ./script/watchman.sh

or install Facebook Watchman from the instructions here.

About

Angie is an MVC that runs in NodeJS designed with AngularJS in mind. It allows you to create web applications by routing requests to controllers and directives and referencing data models in a fashion similar to how you would using AngularJS. Although the naming and providers are different, the goals and best practices are the same.

Angie is simple to use, flexible, and lightweight and offers a holistic approach to JavaScript across the stack.

For more details on how to get started, please see the Quickstart section. For a list of Frequently Asked Questions, please see the FAQ and the CHANGELOG for an up to date list of changes. AngularJS is in no way used or affiliated with this project.

Contributors

It's easy to contribute to the Angie Framework: - Feature requests should be made through the issues section of this repository. - Issues should be logged through the issues tab as well. - Ancillary functionality can be added to Angie in a package. You may use the Angie Package Template as a bootstrapped dependency package template.

Contributors to this Project are outlined in the CONTRIBUTORS file.

Features

Write components & modules like you would in AngularJS

Angie lets you create modules the way you would on the front end to serve as Controllers, directives, services, and Models on the back end. Both 1.x and 2.x AngularJS flavor syntax is supported.

Easy to use CLI

Scaffold a new project, run a web server, sync your database, migrate your models, open an Angie shell, and more all from the command line.

Dependencies

Angie allows you to define dependencies to inject services straight into your application from any other Angie application. In the AngieFile.json created when you scaffold an app is a "dependencies" section. Add the absolute path of another Angie project to this list and when the app is bootstrapped, it will give you access to any of the code you have created in the dependency application.

RESTful API responses & template rendering

Angie RESTful responses are accomplished via the Angie REST Framework. With the inclusion of this dependency, your Controllers have the ability to route requests via "allowed" method endpoints and serialize request and render response data from the Controller methods into a variety of formats.

Templates can be pre-rendered by Controllers with Angie! The template compiler understands partial templates, scope inclusion, and can execute default or custom directives.

Flexible ORM

Angie makes creating & maintaining data models across many different databases easy. Add your configuration options to a configuration file, sync your database and perform CRUDdy operations with ease. Support for more databases is being added all the time. For more information on the ORM, please visit the Angie ORM Repository

Documentation

Angie documentation can be found here.

Quickstart

Please see the QUICKSTART guide for more details.