New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

codechallenge

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

codechallenge

ES6 module containing code examples, solutions to puzzles, etc., reusable in projects as importable classes.

latest
Source
npmnpm
Version
1.0.3
Version published
Maintainers
1
Created
Source

NPM

Code Challenge

Code Examples with NodeJS and Babel

This project is consumable via EITHER github.com or via NPM.

Node / NPM Installation

  • Install the latest version of Node from the Node.js website

Github instructions

  • Clone this repo to your computer: git clone git@github.com:JoeCostanzo/codechallenge.git
  • Change directory into the project: cd codechallenge
  • Install the project: npm install (will install babel tools such as babel-cli, etc)

Run examples

  • babel-node [desired file] (e.g. babel-node src/pascalsTriangle.js)

NPM instructions

  • Install the module into your project via npm: npm install codechallenge
  • Import as a normal package and access it's exported members.
import * as challenge from 'codechallenge'; // ES 'next' syntax

var challenge = require('codechallenge'); // pre-ES6 syntax

console.log(challenge.katas); // etc.

FAQs

Package last updated on 08 Apr 2017

Did you know?

Socket

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.

Install

Related posts