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

crystal

v0.18.0

Published

code generator for every language, framework and platform

Downloads

524

Readme

Crystal JS 0.18.0

Crystal API Crystal CLI Crystal JS Crystal Hub Crystal Studio Crystal Web

Crystal JS

code generator for every language, framework and platform

Table of Contents

Install

Choose your favorite way to install things:

npm

npm install crystal

GitHub

git clone https://github.com/crystal/crystal

Hello World

Input

Create a file called helloworld.js and add these contents:

var Crystal = require('crystal');
var project = new Crystal({
  name: 'My App',
  description: 'This is my app.',
  path: './output/myapp',
  imports: {
    'crystal/license': '~0.2.4',
    'crystal/readme': '~0.2.2'
  },
  outputs: [{
    // generate a LICENSE file
    generator: 'license.MITGenerator',
    spec: {
      copyright: '2015 Crystal'
    }
  },{
    // generate a README.md file
    generator: 'readme.ReadmeGenerator',
    spec: {
      name: '$name',
      description: '$description'
    }
  }]
});

Output

Now run your helloworld.js script:

node helloworld.js

This will create 2 files: README.md and LICENSE

README.md

# My API

this is my API

LICENSE

The MIT License (MIT)

Copyright (c) 2015 Crystal

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Usage

Load Crystal

var Crystal = require('crystal');

Create Project

var project = new Crystal({
  name: 'My App',
  description: 'This is my app.',
  path: './output/myapp',
  imports: {
    'crystal/license': '~0.2.4',
    'crystal/readme': '~0.2.2'
  },
  outputs: [{
    // generate a LICENSE file
    generator: 'license.MITGenerator',
    spec: {
      copyright: '2015 Crystal'
    }
  },{
    // generate a README.md file
    generator: 'readme.ReadmeGenerator',
    spec: {
      name: '$name',
      description: '$description'
    }
  }]
});

Save Project

project.save();

Load Project

var project = new Crystal('/path/to/project');

Update Project (and its Imports)

project.update();

Build Project

project.build({
  // overwrites any manual changes
  force: true
});

Run Project

project.run();

Modularize Project

Modularize your project for other projects to use:

var mod = new Crystal({
  name: 'My Module',
  description: 'This is my module.',
  path: './output/mymod',
  imports: {
    'crystal/handlebars': '~0.2.3'
  },
  exports: {
    ReadmeGenerator: {
      engine: 'handlebars.HandlebarsEngine',
      filename: 'README.md',
      schema: {
        type: 'object',
        properties: {
          name: {
            required: true,
            type: 'string'
          },
          description: {
            required: true,
            type: 'string'
          }
        }
      },
      template: "# {{{name}}}\n\n{{{description}}}",
      type: 'generator'
    }
  }
});

Examples

JavaScript

Python

Ruby

Other

API Reference

build([opts])

Builds your project.

Options

Example

var project = new Crystal('/path/to/project');
project.build({ force: true });

generate([opts])

Generates your project's files.

Options

Example

var project = new Crystal('/path/to/project');
project.generate({ force: true });

init([opts])

Initializes your project.

Example

var project = new Crystal('/path/to/project');
project.init({
  name: 'My App',
  description: 'This is my app.'
});

install([opts])

Installs a module.

Example

var project = new Crystal('/path/to/project');
project.install({
  'crystal/readme': '~0.2.2'
});

load([opts])

Loads your project's configuration.

Example

var project = new Crystal;
project.load('/path/to/project');

run([opts])

Runs your project.

Example

var project = new Crystal('/path/to/project');
project.run({ force: true });

search([opts])

Search for modules.

Example

var project = new Crystal('/path/to/project');
project.search({ keywords: 'laravel' });

test([opts])

Example

var project = new Crystal('/path/to/project');
project.test();

Test your project.

update([opts])

Updates your project.

Example

var project = new Crystal('/path/to/project');
project.update();

validate()

Validates your project.

Example

var project = new Crystal('/path/to/project');
project.validate();

Official Documentation

View Crystal's Official Documentation here:

https://crystal.readme.io

Live Editor

Use Crystal Editor to try Crystal online:

https://crystal.sh/editor

Top 10 Features

(1) Crystal unifies all technologies with a standardized input written in YAML, JSON, CSON and/or XML.

(2) Crystal generates code for:

  • Any application: APIs, Apps, Websites, Frontends, Backends + more
  • Any language: JavaScript, PHP, Ruby, Python, Swift, Java + more
  • Any framework: Express, Hapi, Laravel, Yii, Rails, Sinatra, Django + more
  • Any platform: Twitter, Facebook, Mailchimp, Pinterest, Google + more
  • Any runtime/server: Node.js, Apache, Nginx, HAPROXY + more
  • Any CMS: Wordpress, Drupal, Joomla, Plone, Keystone + more
  • Any datastore: MySQL, PostgreSQL, Redis, MongoDB, DynamoDB + more
  • Any file: README, LICENSE, AUTHORS, HOSTS + more
  • ...and any other software!!

(3) Crystal is made up of 8 elements that make code generation more flexible and powerful than ever before:

(4) Crystal is meant to be used on an ongoing basis - beyond project creation and scaffolding.

(5) Crystal has its own registry (the Crystal Hub) and package manager built-in which makes it easy to search, install and update modules.

(6) All of Crystal's elements can be modularized and published to the Crystal Hub for you or others to use.

(7) You can use multiple modules together such as a:

  • README generator for documentation
  • MIT generator for licensing
  • Composer generator for frontend dependencies
  • Bower generator for backend dependencies
  • Laravel generator for business logic
  • Ember generator for UI

(8) You can add/remove modules to/from a project at anytime.

(9) To prevent vendor lock-in and becoming dependent of Crystal, it's kept in its own directory: .crystal/. If you wish to no longer use Crystal, simply delete this directory and continue using the generated code (and making changes) without Crystal.

(10) Crystal makes language integration and/or migration easier.