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

dywo

v1.0.11

Published

Dywo - A flexible CLI tool for web project management

Downloads

753

Readme

Dywo CLI

npm version License: MIT npm downloads GitHub stars GitHub issues GitHub pull requests Build Status Coverage Status PRs Welcome

Dywo is a flexible Command Line Interface (CLI) tool for web project management. It simplifies the process of creating, developing, and managing web projects with a focus on vanilla JavaScript development.

Features

  • Project generation with customizable templates
  • Built-in development server
  • Compilation and bundling of assets
  • Code linting and formatting
  • Test runner integration
  • JavaScript obfuscation

Installation

Option 1: Install from npm

npm install -g dywo

Option 2: Install from source

  1. Clone the repository:

    git clone https://github.com/bluethefoxofficial/dywo-cli.git
    cd dywo-cli
  2. Install dependencies:

    npm install
  3. Link the CLI tool globally:

    npm link

Usage

Generate a new project

dywo generate

Follow the prompts to customize your project.

Compile your project

dywo compile client

or

dywo compile server

Serve your project

dywo serve

Run tests

dywo test client

or

dywo test server

Lint your code

dywo lint client

Format your code

dywo format client --write

Obfuscate your code

dywo obfuscate client

Configuration

Dywo uses a dywo.config.js file in the root of your project for configuration. Here's an example:

module.exports = {
  client: {
    entry: './src/main.js',
    output: {
      path: './dist',
      filename: 'bundle.js'
    }
  },
  server: {
    entry: './server/index.js',
    output: {
      path: './dist',
      filename: 'server.js'
    }
  },
  devServer: {
    port: 8080
  }
};

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Support

If you encounter any problems or have any questions, please open an issue on the GitHub repository.

Donations

If you find Dywo helpful and want to support its development, consider making a donation. Your support is greatly appreciated and helps maintain and improve this tool!

Donate with PayPal

You can make a donation via PayPal: paypal.me/bluethefox

Every contribution, no matter how small, is sincerely appreciated and goes directly towards the time and resources dedicated to improving Dywo.


Made with ❤️ by Bluethefox