Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ezforms

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ezforms

Easy HTML Form Rendering Using Node.js

  • 2.2.3
  • unpublished
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

EZ Forms v2.2.3

A super easy to use Node.js module for generating HTML 5 forms that can easily be customized with CSS using the default class names or your own.

Installation

npm i ezforms

Usage Example (see /example.js, /example.ejs, and /css/example.css)

const ejs = require(`ejs`);
const express = require(`express`);
const ezforms = require(`./index`);
const fs = require(`fs`);

/** Create express web server */
const app = express();

/** Create route for example form at root of web server */
app.get(`/`, (req, res) => {
  /** Create form */
  const form = new ezforms.Form();
  
  /** Set form action and method properties */
  form.action(`/`).method(`GET`);
  
  /** Create form heading (default 16 cols wide) */
  form.heading().rank(1).text(`My Example Form`);
  
  form.alert().cols(16).type(`error`).strong(`Error!`).text(`Username or password invalid!`);
  
  /** Create two text inputs, allowing only letters and quotes */
  form.text().cols(6).colsAfter(2).name(`firstName`).label(`First Name:`).required(true).pattern(`^[a-zA-Z"]+$`);
  form.text().cols(6).colsAfter(2).name(`lastName`).label(`Last Name:`).required(true).pattern(`^[a-zA-Z"]+$`);

  /** Create password inputs, requiring one uppercase letter, one lowercase letter, one number, at minimum 8 chars */
  form.password().cols(7).colsAfter(1).name(`password`).label(`Choose Password:`).required(true).pattern(`(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,}`);
  form.password().cols(7).colsAfter(1).name(`password2`).label(`Confirm Password:`).required(true);
  
  /** Create select pulldown input */
  form.select().cols(6).colsAfter(2).name(`favoritePetType`).label(`Favorite Pet Type:`);
  form.option().value(`bird`).text(`Bird`);
  form.option().value(`cat`).text(`Cat`);
  form.option().value(`dog`).text(`Dog`);
  form.option().value(`dog`).text(`Gerbil`);
  form.option().value(`horse`).text(`Horse`);
  form.option().value(`rat`).text(`Mouse/Rat`);
  
  /** Create horizontal radio group input */
  form.radios().cols(8).name(`sex`).label(`Sex:`).align(`horizontal`);
  form.option().value(`female`).text(`Female`).selected(true);
  form.option().value(`male`).text(`Male`);
  
  /** Create vertical checkbox group input */
  form.checkboxes().cols(6).name(`languages`).label(`Langauges:`).align(`vertical`);
  form.option().value(`arabic`).text(`Arabic`);
  form.option().value(`mandarin`).text(`Chinese Mandarin`);
  form.option().value(`english`).text(`English`);
  form.option().value(`french`).text(`French`);
  form.option().value(`german`).text(`German`);
  form.option().value(`italian`).text(`Italian`);
  form.option().value(`japanese`).text(`Japanese`);
  form.option().value(`korean`).text(`Korean`);
  form.option().value(`portuguese`).text(`Portuguese`);
  form.option().value(`spanish`).text(`Spanish`);
  form.option().value(`russian`).text(`Russian`);
  form.option().value(`urdu`).text(`Urdu`);
  
  /** Create number input */
  form.number().cols(4).min(13).max(120).name(`age`).id(`age`).label(`Age:`).value(40);
  
  /** Create range input */
  form.range().cols(6).min(13).max(120).id(`ageSlider`).label(` `).value(40).addWrapperClass(`pad-me`);
  
  /** Create date input */
  form.date().cols(6).name(`birthDate`).label(`Birth Date:`);
  
  /** Create email input */
  form.email().cols(10).name(`email`).label(`Email Address:`);
  
  /** Create text area input (default 16 cols wide -- EZ form cols, not text area cols) */
  form.textarea().rows(4).name(`description`).label(`Describe Yourself:`);
  
  /** Create buttons */
  form.button().cols(4).colsBefore(3).colsAfter(2).type(`reset`).text(`Reset`);
  form.button().cols(4).colsAfter(3).type(`submit`).text(`Submit`);
  
  /** Render EJS template with our rendered form */
  const html = ejs.render(fs.readFileSync(`example.ejs`).toString(), { form: form.render() });
  
  /** Send HTML to requestor */
  res.send(html);
});

/** Create route for example CSS */
app.get(`/css/:file`, (req, res) => {
  res.sendFile(__dirname + `/css/` + req.params.file);
});

/** Create route for jQuery */
app.get(`/js/jquery.min.js`, (req, res) => {
  res.sendFile(__dirname + `/node_modules/jquery/dist/jquery.min.js`);
});

/** Start web server */
app.listen(7000, () => {
  console.log(`Web server up and running on port 7000!`);
});

Latest Changes

  • Improved flex sizing allows one to skip filling in all 16 cols with colsBefore/colsAfter when not all columns are used
  • Added heading classes so they are specific to ezforms headings instead of all headings in the document
  • Added octicons for the alerts, and improved warning alert CSS colors

Todo

  • Create vertical stack element for placing multiple inputs vertically adjacent to a single input

License

MIT

Keywords

FAQs

Package last updated on 05 May 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc