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

elm-app-gen

v1.3.1

Published

A CLI for generating Elm projects that build with Parcel

Downloads

4

Readme

Elm App Generator

Generate an Elm app, with only the parts that you need, and no hidden configuration.

Getting Started

Installation

NPM

$ npm install --global elm-app-gen

Yarn

$ yarn global add elm-app-gen

Create your project

In the parent directory of your (soon-to-be) project:

$ elm-app-gen yourProjectName

You'll be prompted to provide some information about your project, such as a license, description, and they type of Elm program to generate. When you're done, the new app is created in a directory based on the name you provided. It will contain a README with instructions on how to start a live server and perform other development tasks.

QuickStart

If you want to start coding as quickly as possible, you can run

$ elm-app-gen quickstart yourProjectName

This will create a an application with default settings and immediately start an application server.

What's included in a new project?

Elm App Generator creates a project for you that includes:

The list of initial dependencies is intentionally small to keep your app simple until it needs more features and tools.

Project Goals

Simple

Elm App Generator creates apps that only contain the tools you need to start working on your project. It won't make assumptions about what you're trying to do, other than building an app with Elm. Where multiple tools are available for a particular task, Elm App Generator opts for the simpler choice.

Friendly

Elm App Generator always tries to provide useful context when asking users to make decisions. When the user needs to take additional steps, it will describe them when it runs, and include them in the documentation for the generated application. Generated apps contain links to documentation for the libraries and tools in use.

Explicit

There's no hidden configuration in the generated application. Some other tools hide a lot of configuration behind the scenes, which can be overwhelming when it's finally exposed. Elm App Generator exposes all of you project to you up front, so nothing is a mystery.