Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
generator-columbia-angular
Advanced tools
Opinionated Yeoman Generator for AngularJS applications with an Express Sever and a MongoDB backend
Yeoman generator that scaffolds out a full stack Javascript web app using angularjs, Grunt and Bower, Node and Express, MongoDB and Redis.
Pre-reqs:
This generator uses Sass with Compass for preprocessing stylesheets. In order to make use of this feature, you need to have ruby, sass and compass installed. I personally use rbenv for managing ruby. I also use nvm for managing node:
brew install rbenv brew install rbenv-gem-rehash
gem install sass
gem install compass
# you may have to install compass with the --pre flag and compass-rails
gem install compass --pre
gem install compass-rails
gem install bundler foreman pg rails thin --no-rdoc --no-ri
gem install redcarpet pygments.rb
You also need to have grunt-cli and blower installed globally. Here are my current global npm installs:
If you're not familiar with Yeoman and want to learn more If you want to build your own generator
Finally, make sure you don't need sudo privileges to run either gem install
or npm install
:
http://www.wenincode.com/installing-node-jsnpm-without-sudo/
http://www.johnpapa.net/how-to-use-npm-global-without-sudo-on-osx/
For gems, use rbenv
Install Yeoman:
$ npm install -g yo
To install generator-columbia-angular from npm, run:
$ npm install -g generator-columbia-angular
Finally, initiate the generator:
$ yo columbia-angular optionalAppName
Before you actually can run the app, you need to make sure that mongodb is running. In a separate terminal run $ sudo mongod
, then run $ grunt
.
run $ yo columbia-angular:deploy
to setup both github and heroku automatically.
Note: If your version of git is out of date, heroku may refuse to create your app for the reasons specified at https://blog.heroku.com/archives/2014/12/24/update_your_git_clients_on_windows_and_os_x and you may have to first update git. If you choose to do this with homebrew, which I recommend (for making upgrading in the future easier), you may have to set your path to use /usr/local/bin/ before using /usr/bin/ (the default). You can do this by running:
$ brew sh
and should get the following message:
Your shell has been configured to use Homebrew's build environment:
this should help you build stuff. Notably though, the system versions of
gem and pip will ignore our configuration and insist on using the
environment they were built under (mostly). Sadly, scons will also
ignore our configuration.
When done, type `exit'.
brew \[\033[1;32m\]\w\[\033[0m\]$
Then restart your terminal. If that doesn't fix your issue, refer to this homebrew issue thread for additional workarounds:
The command uses the following to setup Github:
$ hub init
$ hub add . && hub commit -m "initial commit"
$ hub create optional_org_name/repo_name -d "description of repo"
$ hub push origin master
And to setup Heroku, it runs grunt build, copies over the Procfile, initializes the dist/ dir as a separate repository, and runs:
$ heroku apps:create herokuAppName && heroku config:set NODE_ENV=production
$ git add -A && git commit -m "Initial commit"
$ git push heroku master
all of which you can of course do at the command line, provided you have both hub and the heroku toolbelt installed.
More info on working with node in Heroku
The deploy generator also uses a plugin called heroku-config to push your local .env file to heroku. Install it with:
$ heroku plugins:install git://github.com/ddollar/heroku-config.git
Deployment requires that you have a remote mongo database to connect to. You can use heroku addons to create one:
heroku addons:add mongolab
or you can [setup a mongolab account] and create one online. If you do this, just make sure to set the MONGOLAB_URI on heroku to the URI for accessing that db.
This project uses semantic versioning and github for releases. Releases can be created automatically using the grunt bump task, which will create a conventional changelog as well as a release. For more, see:
grunt-release github on creating releases grunt-conventional-changelog commit conventions node-semver
To create new releases with changelogs using the autorelease as it currently stands:
$ grunt bump:releaseType
$ grunt autorelease:releaseType
Release type should be one of patch, minor, major, or prerelease
running grunt bump simply bumps the version, which enables conventional changelog to use the correct latest version when generating its changelog. grunt autorelease then does the following:
To then test the production version:
$ grunt build
$ grunt serve:prod
To then commit and push the production version to heroku:
$ cd dist
$ git status
$ git add --all
And normally we include a message like:
$ git commit -m "feat(v0.2.3): dist build for v0.2.3"
$ git push heroku master
Inspirations:
Go to https://www.npmjs.com/ and click on "create account". You must have an account on npm in order to publish modules
$ npm link
inside the repo root
b. linking to the linked module by running $ npm link <module-name>
from inside the directory you wish to use it in.$ npm unlink
inside repo root and $npm unlink <module-name>
inside test dir so you don't still have the local version linked in.$ npm publish
.1.2.1 (2015-02-18)
<a name="1.2.0"></a>
FAQs
Opinionated Yeoman Generator for AngularJS applications with an Express Sever and a MongoDB backend
The npm package generator-columbia-angular receives a total of 14 weekly downloads. As such, generator-columbia-angular popularity was classified as not popular.
We found that generator-columbia-angular demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.