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

mml

v1.0.2

Published

> The command line tool to build, deploy and manage MML-based applications.

Downloads

2

Readme

MML

The command line tool to build, deploy and manage MML-based applications.

Mobile Markup Language for the creation of cross-platform mobile applications

#Installation In your command-line on Windows:

    c:\> npm install -g mml

In your terminal on Mac OS X/Linux:

    $sudo npm install -g mml

Creating a new mml project

This simple example demonstrates how can create an project:

	mml create new_project
	cd mml
	mml prepare ionic
	mml build android

Documentation

Mobile Semantic

Button, checkbox, edittext, form, picture, radiogroup, ratingbar, seekbar, spinner, text, toggle, dialog, layout, link, menu, tabs, view

button:

| Attribute | Definition | |-----------|---------------| | id | Provides a unique identifier | | margin | Distance from each side to the neighboring element | | padding | Distance between the border and the content of the element | | status | This Boolean attribute indicates that the user cannot interact with the control | | width | It sets the width of the block elements |

  <button
  	id="String"
	margin="em|percentage" 
	padding="em|percentage" 
	status="enabled|disabled" 
	width="em|percentage">
	Text of the button
  </button>

checkbox:

| Attribute | Definition | |-----------|---------------| | id | Provides a unique identifier | | margin | Distance from each side to the neighboring element | | padding | Distance between the border and the content of the element | | status | This Boolean attribute indicates that the user cannot interact with the control | | width | It sets the width of the block elements |

  <checkbox
	id="String"
	margin="em|percentage" 
	padding="em|percentage" 
	state="enable|disabled"
	alignText="right|left" 
	value="true|false"> 
	Text of the checkbox
  </checkbox>

edittext:

| Attribute | Definition | |-----------|---------------| | id | Provides a unique identifier | | margin | Distance from each side to the neighboring element | | padding | Distance between the border and the content of the element | | status | This Boolean attribute indicates that the user cannot interact with the control | | width | It sets the width of the block elements | | multiline | It sets the width of the block elements | | hint | Specifies a short hint that describes the expected value of a text area |

  <edittext 
	margin="em|percentage" 
	padding="em|percentage" 
	status="enable|disabled" 
	multiline="false|true"
	hint="String"
	width="em|percentage">
	Text of the edittext
  </edittext>

form:

| Attribute | Definition | |-----------|---------------| | id | Provides a unique identifier | | margin | Distance from each side to the neighboring element | | padding | Distance between the border and the content of the element | | submit | Function | | validate | Function |

  <form 
	id="String"
	submit="Function" 
	validate="Function" 
	padding="em|percentage" 
	margin="em|percentage">
	Content of the form
  </form>

picture:

| Attribute | Definition | |-----------|---------------| | id | Provides a unique identifier | | margin | Distance from each side to the neighboring element | | padding | Distance between the border and the content of the element | | status | This Boolean attribute indicates that the user cannot interact with the control | | align | The align attribute specifies the alignment of an image according to the surrounding element. | | load | file path |

  <picture
	id="String"
	margin="em|percentage" 
	padding="em|percentage" 
	width="em|percentage" 
	state="enable|disabled"
	align="right|left|center" 
	load="File"> 
  </picture>

picture:

| Attribute | Definition | |-----------|---------------| | id | Provides a unique identifier | | margin | Distance from each side to the neighboring element | | padding | Distance between the border and the content of the element | | status | This Boolean attribute indicates that the user cannot interact with the control | | align | The align attribute specifies the alignment of an image according to the surrounding element. | | load | file path |

  <picture
	id="String"
	margin="em|percentage" 
	padding="em|percentage" 
	width="em|percentage" 
	state="enable|disabled"
	align="right|left|center" 
	load="File"> 
  </picture>

radiogroup:

| Attribute | Definition | |-----------|---------------| | id | Provides a unique identifier | | margin | Distance from each side to the neighboring element | | padding | Distance between the border and the content of the element | | status | This Boolean attribute indicates that the user cannot interact with the control | | align | The align attribute specifies the alignment of an image according to the surrounding element. | | data | object of options |

  <radiogroup
	margin="em|percentage" 
	padding="em|percentage" 
	status="enable|disabled"
	align="vertical|horizontal"
	data="{'opcion 1' : 1, 'opcion 2' : 2}"
	id="String">
  </radiogroup>

ratingbar:

| Attribute | Definition | |-----------|---------------| | id | Provides a unique identifier | | margin | Distance from each side to the neighboring element | | padding | Distance between the border and the content of the element | | value | | | length | |

  <ratingbar
	id="String"
	length="Number"
	value="Number"
	margin="em|percentage" 
	padding="em|percentage" >
  </ratingbar>

seekbar:

| Attribute | Definition | |-----------|---------------| | id | Provides a unique identifier | | margin | Distance from each side to the neighboring element | | padding | Distance between the border and the content of the element | | status | This Boolean attribute indicates that the user cannot interact with the control | | value | | | min | | | max | |

  <seekbar
	margin="em|percentage" 
	padding="em|percentage" 
	status="enable|disabled" 
	id="String"
	min="Number"
	max="Number"
	value="Number">
  </seekbar>

spinner:

| Attribute | Definition | |-----------|---------------| | id | Provides a unique identifier | | margin | Distance from each side to the neighboring element | | padding | Distance between the border and the content of the element | | status | This Boolean attribute indicates that the user cannot interact with the control | | hint | Specifies a short hint that describes the expected value of a text area | | data | object of options |

  <spinner
	margin="em|percentage" 
	padding="em|percentage"
	status="enable|disabled"
	data="Array"
	hint="String"
	id="String" >
  </spinner>

text:

| Attribute | Definition | |-----------|---------------| | id | Provides a unique identifier | | margin | Distance from each side to the neighboring element | | padding | Distance between the border and the content of the element | | status | This Boolean attribute indicates that the user cannot interact with the control | | align | The align attribute specifies the alignment of an text according to the surrounding element. |

  <text
	id="String"
	margin="em|percentage" 
	padding="em|percentage" 
	width="em|percentage" 
	state="enable|disabled"
	align="right|left|center"> 
	The text
  </text>

toggle:

| Attribute | Definition | |-----------|---------------| | id | Provides a unique identifier | | margin | Distance from each side to the neighboring element | | padding | Distance between the border and the content of the element | | status | This Boolean attribute indicates that the user cannot interact with the control | | alignText | | | value | |

  <toggle
	id="String"
	margin="em|percentage" 
	padding="em|percentage" 
	state="enable|disabled"
	alignText="right|left" 
	value="true|false"> 
	Text of the checkbox
  </toggle>