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

@atlantis-of-code/aoc-cli

v1.3.0

Published

aoc-cli command-line utility

Downloads

154

Readme


Develop ERP-style applications in TypeScript

aoc-dev.io

The AOC framework provides you with the tools you need to quickly and reliably develop management applications (e.g. ERP-style applications, or internal business management applications) that are used over a web browser. It provides a compendium of components, classes, utilities, functions, workflows that will allow you to focus on the fundamental aspects of your application, such as data processing, database definition, that make your application unique, without having to spend time on tasks such as creating user interfaces, writing stylesheets, html code, websockets, apis or cruds, as all this is provided by the framework.

The AOC framework is composed of two separate libraries and a cli: aoc-client, aoc-server, and aoc-cli.

  • aoc-client is a library for Angular that provides components, directives, services, etc. that you will use to perform the front-end part of your application.
  • aoc-server is a library for Node.js that takes care of the server-side part, defines endpoints and performs operations on the database.
  • aoc-cli is a command line interface program that helps you to bootstrap an application, generate models and entities, etc.

The AOC framework operates using and is built upon this software stack:

Advantages

  • 100% Typescript, no language switching.
  • No CSS, no complicated HTML structures, no SQL most of the time.
  • Angular is fantastic, and the rest of the complicated stuff is already programmed by us in aoc-client.
  • Node.js is fantastic, as it is extremely fast, versatile and has a very large ecosystem. aoc-server uses Express under the hood. You can expand with your own routers and extra functionality.
  • Very fast and reliable ORM called MikroORM. Also Typescript.
  • Written to work with PostgreSQL only, at this time. We consider it the best open source database engine available.
  • Proven effectiveness: Applications made with this framework are used in companies of various sectors and public institutions.

Please note

  • In this framework, many decisions have been made by us for you.
  • You need to understand how Angular works, at least at a basic or intermediate level.
  • You need to understand some MikroORM, relational databases and SQL concepts.

Benefits

  • Use of websockets (socket.io) to notify connected clients that there are updates.
  • Possibility of creating a cluster of nodes automatically, you write the program for one node, and it can run in several.
  • Provides a mechanism for creating the critical section (mutex) for those cases where you need to do a task and make sure there might be a race condition.
  • An extensible translation system.
  • Automatic creation of all data models (on the client we call them models, and on the server we call them entities) from an introspection of your database design.
  • Many of data relation patterns are solved at both client and server side (if you find one that is not supported, let us know).
  • Generation of automatic APIs (Cruds, for example).
  • A reporting system in HTML and PDF.
  • A spreadsheet system to create XLS files from data.
  • Server-side hooks for api calls and ORM.
  • Write client-side queries as if you were developing on the server side.
  • Write custom authentication (log-in) and authorization (permissions) of users.
  • Themable UI, give your application corporate colors by adjusting a couple of variables, the rest will be autocalculated.
  • And much more that you will discover...

For all this and more you will find guides and tutorials in our documentation.

See it in action

The «Quest for Atlantis» is a tiny ERP application designed for demonstration purposes, allowing you to explore its source code. In addition to framework's documentation and API, it serves as an extremely valuable and up-to-date resource for learning.

Frequently Asked Questions

Q: What kind of applications can I create?
A: The AOC framework was developed with the idea to facilitate the process to create all sorts of business management software. It fits perfectly well for the spectre of ERP applications. Financial accounting, management accounting, order processing, customer/supplier relationship management, and data services are common areas a software could cover. It allows the developers to reflect vendor's interpretation of the most effective way to perform each business process.

Q: What are the available deployment options?
A: You are free to use any option like on-premises, cloud hosted, or SaaS.

Q: What are the best ways to learn this framework?
A: It is recommended to read the Documentation, and check the Quest Demo application.

Q: Can I use aoc-client/aoc-server one without the other?
A: Yes, in fact, it would make sense to use aoc-server in case you need the API endpoints and use a different front end, for example.

Q: Do I need to pay to use this framework, build an application, and sell it to my customers?
A: If you make a commercial usage, yes. Check our prices in our website

npm Packages

  • @atlantis-of-code/aoc-client
  • @atlantis-of-code/aoc-server
  • @atlantis-of-code/aoc-cli

(c) Atlantis of Code