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

generator-sails

v0.1.0

Published

A Yeoman sails generator largley copied from generator-webapp

Downloads

13

Readme

Sails yeoman generator prototype

This a prototype of sails yeoman integration, this repo is mostly copied from generator-webapp, I don't think this is the best solution for Yeoman sails integration but this repo is for expirimenting with and discussing the integration. The best solution would be for yeoman to have a a configurable backend and so you would just be able to specify the server you wanted to use like:

yo webapp --sails
yo angular --sails
yo chromeapp --express

Installation

npm install -g generator-sails

Make sure you have yo installed, if not run

npm install -g yo

Creating a Sails Yeoman project

  • Make a folder for your project
mkdir testProject && cd testProject
  • Run the generator command
yo sails
  • Answer the questions and wait for the obscene amount of pacakges to download
  • Start the server and watch process using grunt
grunt server

This will start the sails server and the grunt watch processes, you will need to reload the page because the open task fires before the server starts. The sails server will restart when files change and the grunt watch process will auto-compile your assets.

Add console.log 'yay sails to app/scripts/hello.cofee and reload your browser (I haven't gotten livereload to work without a browser extension on dynamic pages) and it will have logged yay sails

While your grunt server process is running, in another terminal run sails generate cat and navigate to http://localhost:1337/cat/create, (you might need to reload the page once the server restart is slow).

Todo

  1. Currently you can't run sails with yeomans production build because you can't change the folder that static files are serverd from or the server environment without changing config files
  2. The assets folder doesn't do anything, It is there because sails wants it for asset rack and will throw errors if you remove it
  3. Get livereload working, this means having the sails starter page be static which makes sense for buidling ajax apps
  4. Because such minor changes had to be made to the Yeoman generator to get this working, it would be easy to get sails to work with any yeoman generator. It should be an option for yeoman to use a sails backend instead of the connect middleware static server