A remake of the classic board game using javascript and html.
- Display grid of given size
- Create a data structure to hold ships
.terraform/ | |
*.pem | |
*.tf | |
*.tfstate | |
*.yaml | |
*.backup | |
istio-*/ | |
cert-manager-*/ | |
*.swp | |
env |
// Type JavaScript here! |
# Loopback Workshop | |
--- | |
## Overview | |
--- | |
We are going to build out an API that will allow CRUD operations for Teams and Players, and query for players that belong to teams. This project is concerned with the back end, and doesn't need to have a front facing web app. The purpose of this workshop is to demonstrate how using a framework can make building and maintaining APIs easy. | |
## Prerequisites | |
--- |
const chai = require('chai'); | |
const chaiHttp = require('chai-http'); | |
const app = require('../../server/server'); | |
const expect = chai.expect; | |
chai.use(chaiHttp); | |
describe('Server app', function mocha() { | |
this.timeout(6500); |
<!doctype html> | |
<html> | |
<head> | |
<title>Socket.IO chat</title> | |
<style> | |
* { margin: 0; padding: 0; box-sizing: border-box; } | |
body { font: 13px Helvetica, Arial; } | |
form { background: #000; padding: 3px; position: fixed; bottom: 0; width: 100%; } | |
form input { border: 0; padding: 10px; width: 90%; margin-right: .5%; } | |
form button { width: 9%; background: rgb(130, 224, 255); border: none; padding: 10px; } |
const Server = require('socket.io'); | |
const app = express(); | |
const server = http.createServer(app); | |
const io = new Server(server); | |
io.on('connection', (socket) => { | |
console.log(`Connection detected: ${socket.client.id}`); | |
socket.use(([name, data], next) => { | |
if (data.auth === process.env.SOCKET_KEY) { | |
return next(); |
https://github.com/djvirgen/virgen-acl Simple and elegant, create your own checks. No middleware?
https://github.com/OptimalBits/node_acl Use as middleware, create your own roles and access. Great choice.
https://github.com/tschaub/authorized Similar to connect roles... but a bit more robust? you can create roles and action, and associate many roles with that action
Complete the React Basics course on Team Treehouse, or the equivelant on CodeSchool, PluralSight, etc.
Read Thinking in React and quickly review the React docs.
Watch Thinking in React follow along carefully and if time permits build the project along side watching.
httpClient.DefaultRequestHeaders.Authorization = | |
new AuthenticationHeaderValue( | |
"Basic", | |
Convert.ToBase64String( | |
System.Text.ASCIIEncoding.ASCII.GetBytes( | |
string.Format("{0}:{1}", username, password)))); |