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

arche-core

v2.4.1

Published

Arche-platform is a quick development platform written in node. This is the App core of it.

Downloads

6

Readme

arche-core

Arche-platform is a quick development platform written in node. This is the App core of it.

usage

set the app folder with base options. then the Arche object will automatically establishes the KOA applications.

app folder contents

  • config
    • local.cjs : default if not set process.env.NODE_ENV
    • {env}.cjs :choise by process.env.NODE_ENV
  • controller
    • {folder}
      • {name}.cjs :use /folder/name url to access
  • service
    • {folder}
      • {name}.cjs :optional
  • static
    • {libs with version} :three-party libraries that do not change permanently
  • view (页面)
    • {*}.html :html/js/css/img 各类html静态资源
    • {*}.cjs :run at server side to render dynamic page
    • {*}.art :page template with art-template

controller usage

module.exports = class {
  // can be one async function. same to koa middleware
  async act_1(ctx) {
    // from querystring
    let { code } = ctx.query;
    // call service
    let srv_user = ctx.service('oa.user');
    let rows = await srv_user.check(code);
    ctx.body = rows;
  }

  // can be array of async function
  act_2 = [async (ctx, next) => {
    // do database query with card model
    let { rows } = await ctx.db.cardr('用户表', ['ID'], {
      filter: ['ID', '=', res.id]
    });
    ctx.something = rows;
    await next();
  }, async (ctx, next) => {
    ctx.body = ctx.something;
  }];
};

service usage

module.exports = class {
  constructor(app) {
    this.app = app;
  }

  async list(id) {
    let { query } = this.app;
    return query.cardr('用户表', '*', id);
  }
};

view usage

setp 1. in cjs file:

module.exports = async (ctx) => {
  ctx.render('user.home', data); // 渲染view中的./home.art模板文件
};

setp 2. in user/home.art file:

<html>
<body>
<% var temp = data.sub.content; %>
</body>
</html>

goto https://github.com/aui/art-template