All Projects β†’ zanuka β†’ originator

zanuka / originator

Licence: MIT license
🌱 es6 starter - babel, tape, zuul, npm scripts

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to originator

noise-php
A starter-kit for your PHP project.
Stars: ✭ 52 (+333.33%)
Mutual labels:  travis-ci, starter
badge-matrix
More advanced badges for projects using Travis or Sauce Labs
Stars: ✭ 77 (+541.67%)
Mutual labels:  travis-ci, sauce-labs
node-typescript-starter
REST API using Node with typescript, KOA framework. TypeORM for SQL. Middlewares JWT (auth), CORS, Winston Logger, Error, Response
Stars: ✭ 19 (+58.33%)
Mutual labels:  starter, node-module
Angular Library Starter Kit
Angular 5 Library Starter Kit based on Angular-CLI
Stars: ✭ 35 (+191.67%)
Mutual labels:  travis-ci, starter
TelegramBot-Go
Telegram bot which search information in Wikipedia and written on Go language
Stars: ✭ 35 (+191.67%)
Mutual labels:  travis-ci
nest-typescript-starter
Nest framework TypeScript starter (node.js)
Stars: ✭ 35 (+191.67%)
Mutual labels:  starter
angular-lazy-loading
Angular 15 & React 18 Examples Lazy Loading
Stars: ✭ 39 (+225%)
Mutual labels:  starter
software-factory
The ready to use Continuous Integration platform
Stars: ✭ 17 (+41.67%)
Mutual labels:  zuul
continuous-integration-with-python
How to test your python code. How to automatically run your tests for your Python code. How to get reports of the tests coverage
Stars: ✭ 25 (+108.33%)
Mutual labels:  travis-ci
the-traveler
The Traveler is a small npm package which wraps around the Destiny 2 API.
Stars: ✭ 52 (+333.33%)
Mutual labels:  node-module
example-app
Example app showcasing fulls1z3's Angular libraries
Stars: ✭ 27 (+125%)
Mutual labels:  starter
firebase-spring-boot-rest-api-authentication
Firebase Spring Boot Rest API Authentication
Stars: ✭ 172 (+1333.33%)
Mutual labels:  starter
floss
Unit-testing for those hard to reach places
Stars: ✭ 26 (+116.67%)
Mutual labels:  travis-ci
lambda-mailer
Simple module for receiving an email from a contact form on your website.
Stars: ✭ 83 (+591.67%)
Mutual labels:  node-module
J1939-Framework
Framework to work with J1939 Frames used in CAN bus in bus, car and trucks industries
Stars: ✭ 123 (+925%)
Mutual labels:  travis-ci
spring-microservices
Example of a microservice architecture using Spring Cloud
Stars: ✭ 76 (+533.33%)
Mutual labels:  zuul
travis-ci-tutorial-java
Just to learn how to use travis-ci in a java project!
Stars: ✭ 38 (+216.67%)
Mutual labels:  travis-ci
ember-cli-es6-transform
Import ES6 modules from npm, bower or anywhere else in your app.
Stars: ✭ 13 (+8.33%)
Mutual labels:  node-module
node-cli-boilerplate
πŸͺ“ Create node cli with this user friendly boilerplate
Stars: ✭ 17 (+41.67%)
Mutual labels:  node-module
express-firebase
πŸ”₯ Express starter for your Firebase applications
Stars: ✭ 60 (+400%)
Mutual labels:  starter

originator

Known Vulnerabilities

intent

This is currently intended to be cloned as a starter template for a new node module. It was created to serve as a utility/backup for my module template experiments and is a bit outdated now.

usage

git clone https://github.com/mdelucchi/originator.git your-module-name

npm scripts

watch - starts file watcher

lint - runs eslint on /src

test - runs tests and formats piped TAP output with tap-spec.

ci - Travis CI integration + zuul multi-framework & browser tests

cover - generates code coverage text-summary report in terminal

report - generates code coverage html report and opens it in browser

coveralls - runs code coverage and sends report to coveralls

zuul - runs browser tests via zuul at http://localhost:9966/__zuul

devDependencies:

  • babel - compiler for writing next generation JavaScript

  • babel-eslint - ESLint using Babel as the parser

  • babel-istanbul - excellent coverage tool

  • babelify - Browserify transform for Babel. Used in multi-framework testing with zuul.

  • blue-tape - substack's tape test runner with promise support

  • coveralls - test coverage and history statistics support for node.js

  • eslint - A fully pluggable tool for identifying and reporting on patterns in JavaScript.

  • eslint-config-xo - ESLint shareable config for XO

  • eslint-plugin-babel - an eslint rule plugin companion to babel-eslint

  • nsp - check for vulnerabilities

  • rimraf - remove stuff

  • tap-spec - formatted TAP output

  • zuul - multi-framework javascript browser testing

Travis CI / Sauce Connect Configuration

Sauce Connect - Used to create tunnel allowing Travis CI to utilize Sauce Labs, a browser and mobile testing platform.

If you plan to use Sauce Connect in your new module, be sure to sign up with Sauce Labs if you haven’t already (it’s free for Open Source projects), and get your access key from your account page.

Then you'll want to replace the secured access key in .travis.yml with your own. See the Getting Started guide on Travis for more info on setting this up.

Best bet if you're a new Travis and/or Sauce Labs user is to follow their steps to create a new .travis.yml file.

Publishing

When you are ready to publish a new version of your module, the following steps can be used:

  1. add and commit your changes via git
  2. npm version patch -m "Ugrade message..."
  3. npm publish

If publish is a success, the postpublish npm script will run git push origin master --follow-tags, pushing up and tagging your code properly.

If you run npm version patch before committing your changes, you'll get a message like npm ERR! Git working directory not clean.. Commit and retry.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].