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

@farmos.org/create-field-module

v2.0.0-alpha.3

Published

Scaffold a Field Module for development with farmOS Field Kit.

Downloads

140

Readme

create-field-module

Scaffold a Field Module for development with farmOS Field Kit.

Quick start

If you have the requirements installed, the project can be scaffolded from your terminal:

npm create @farmos.org/field-module my-custom-module

You will be asked to install @farmos.org/create-field-module locally if this is the first time you've run it; enter y to proceed. Also note that the first argument above, my-custom-module, is optional, and can be whatever name you choose for your project, so long as it is adheres to npm naming conventions. If you omit the name as a command argument, or you wish to change it, you can do so from the following prompt:

## ✔ Module name (kebab-case): … my-custom-module
## ✔ Module label to display in the UI: … My Custom Module
## ✔ Description: … A field module that does something really special.

This will scaffold a project with the following directory structure, with the project name, label and description used to populate package.json, module.config.js and other files:

my-custom-module
├── module.config.js
├── package.json
└── src
    ├── MyCustomModuleContainer.vue
    ├── MyCustomModuleWidget.vue
    └── routes.js

Then you can cd into your project, install dependencies with npm (or the package manager of your choice) and start the development environment:

cd my-custom-module
npm i
npm start

When you're ready to package your Field Module for distribution with farmOS, run the build command:

npm run build

This will generate a distributable with the following directory structure:

my-custom-module/dist
└── farm_fieldkit_my_custom_module
    ├── config
    │   └── install
    │       └── farm_fieldkit.field_module.my_custom_module.yml
    ├── farm_fieldkit_my_custom_module.info.yml
    ├── farm_fieldkit_my_custom_module.libraries.yml
    └── js
        └── my-custom-module.0-0-0.js

This can then be zipped or compressed as a tarball and installed as a farmOS module.

Requirements

  • Node.js v18 or higher
  • npm (included with Node.js) v9 or higher, or equivalent package manager

A general knowledge of JavaScript, Vue.js and Node is also assumed.