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

coserv

v1.1.4

Published

A web framework helping developers to fully utilize HTML, CSS and Javascript.

Downloads

43

Readme

coServ

Why coServ

Web applications are getting complicated day by day. Without a proper platofrm, web app developement could be a very time consuming task. So choosing the "right" plaftorm may be the #1 issue before you even start any coding efforts. If you're not satisfied with the existing platforms, maybe you're looking for a web platform like coServ.

coServ intends to minimize any programming overhead by reducing repetition, removing extra rounds of code generation or compilation, and shortening the development pipeline. Every development construct is intutive and requires skills no more than HTML, CSS or Javascript.

coServ offers the following features that could be good for developer's health:

  • The practice of HTML coding is transformed to node.js coding. Developers use modules, libraries or functions to render HTML codes.

  • Web pages are divided into smaller HTML fragments generated by special node.js modules call palets.

  • Palets are less complicated and easier to be implemented than a whole page. Also, palets can be reused.

  • Because of palets, HTML refactoring is possible and actually encouraged.

  • CSS encapsulation is automatic. Any css decorations inside a palet is not visisble to other palets or pages.

  • The model, view and control of a palet are coded in the same node.js module (program).

  • Regardless it's backend or front-end, use one single language (Javascript) to do both.

Get started

To install

npm install coserv

Once you've installed coServ, there are several articles to help you start writing interesting web apps. Becasue coServ organizes the web developing tasks in a unique while effective way (which could be unheard of for the first time users), it would be helpful to scan through the following articles to get some interesting insights:

Differences between the current and earlier releases

For those who have been the users of the ealier versions of coServ, you'll notice that this official release (v1.0) is not compatible with the older versions. However, the core concepts and principles of how a web app is constructed and organized remain the same.

Below are highlights of the major differences:

  • HTML code generation was done by template literals, while now it's done by node.js modules.

  • coServ divides up a web page to smaller fragments. Earlier versions call those HTML fragments as "blocks" while the official release calls it "palet".

  • A "block" can be composed of up to four files (HTML, CSS, Javascript and a language resource file), while a palet is defined by a single node.js program (module).

  • A new application construct UIC (UI Components) is introduced to further facilitate HTML componentization and refactoring.

  • The file structure of a web application remains relatively the same. There are just some minor directory name changes.