Git Product home page Git Product logo

ratpack's Issues

idea: render default export

just an idea.

// @ratpack { render: true }
export default <div>hello world</div>

variant

// @ratpack { render: true }
export default function App(){ // or a class, whatevs 
  return <div>hello world</div>
}

or you could choose a component to render

// @ratpack { render: 'MyComp' }
export class MyComp extends React.Component {
  render() {
    return <div>hello world</div>
  }
}

Browserify transforms

It looks like https://github.com/webpack/transform-loader would work fine, which means there maybe just needs to be some means of adding webpack config. Perhaps the nearest config file (package.json? webpack.config.js?) would be the place to hook up this and, more generally, whichever particular tools your project might need.

node

// @ratpack { target: 'node' }
console.log('we in node yet?')

experience - instead of opening a terminal, we could setup remote debugging and open up a browser tab instead, with the chrome dev tools loaded etc.

  • how to 'restart' the app? cmd+r? a button?

pragmas

magic pragmas

ratpack supports some magic incantations you can put at the top of your entry file
to customize the webpack/babel backends. A simple example would look like this -

/* @ratpack {
  devtool: 'eval',
  alias: {
    react: 'preact-compat',
    react-dom: 'preact-compat'
  }
}
*/
require('react-dom').render(<div>look, preact!</div>, window.root)

(assuming preact-compat is available locally or in ~/.ratpack/node_modules)

Here's a full list of 'somewhat working' pragmas

devtool

devtool: 'source-map' (ref.)

public

public: './my/public/folder' (ref.)

jsx

jsx: 'Inferno.createElement'

This is different from babel's @jsx pragma, in that it will apply to all js files, not just the one

proxy

proxy: { '/api': 'http://localhost:3000' } (ref.)

provide

provide: { 'Glamor': 'glamor/react' } (ref.)

alias

alias: {
  react: 'preact-compat',
  react-dom: 'preact-compat'
}

(ref.)

define

define: { 'process.env.NODE_ENV': 'test' } (ref.)

rules

rules: [ { files: '*.vue', loader: 'vue-loader', options: { some: 'options' } } , ...]

nb: files is a glob, which gets converted to a regex for webpack's test prop

babel presets and plugins

babel: {
  presets: ['vue', [ 'a11y', {...} ],
  plugins: ['./some/path', ... ]
}

These don't 'work' yet, but sharing possible syntax

target

target: 'node' (ref.)

offline

offline: <options> (ref.)

autoinstall

autoinstall: true (ref.)

plugins

plugins: [ {<module> <options>}, ... ]

other

reload: true
hot: true
production: true
port: 3999

thoughts/questions/ideas?

Pragma rules fail when query params present

Is it possible that ratpack isn't handling query parameters in loader names correctly? I'm not all that familiar with webpack and am having some trouble setting up a loader. The obvious fix just passes the problem elsewhere so that I'm not quite sure how to fix it.

My ./ratpack/package.json looks like this:

{
  "name": "ratpack-local",
  "dependencies": {
    "brfs": "^1.4.3",
    "transform-loader": "^0.2.3"
  }
}

My test.js looks like this

/* @ratpack {
  rules: [{
    files: '*.js',
    loader: "transform-loader?brfs",
    enforce: "post"
  }]
} */

I get the following error in the ratpack console:

screen shot 2017-01-12 at 16 29 43

If I remove ?brfs from the loader name, then the module lookup seems to succeed, except now I get this in the browser console:

screen shot 2017-01-12 at 16 30 42

I hate to put this on you (everything else is looking great!) but just wanted to check run by you the possibility that it might be a corner case in how ratpack is handling this. ๐Ÿš€

Decorators?

Using v1.0.6

comes with liberal babel defaults, including future facing extensions (and decorators!)

Got an error:

Uncaught Error: Module build failed: SyntaxError: Decorators are not officially supported yet in 6.x pending a proposal update.
However, if you need to use them you can install the legacy decorators transform

Doesn't work with a custom .babelrc file either.

Works locally

This is what's in my file

function readonly (target, key, descriptor) {
  descriptor.writable = false;
  return descriptor;
}

class Human {
  constructor(name) {
    this.name = name
  }
  @readonly
  speak() {
    console.log('Hi! My name is ' + this.name)
  }
}

const siddharth = new Human('siddharth')
siddharth.speak()            // Hi! My name is siddharth
siddharth.speak = function () {console.log('Hi! My name is dumdum')}
siddharth.speak()

logs

should dump logs somewhere so can gather them for errors, etc

Error on first launch

I downloaded the release.

I moved the app into Applications folder.

I double clicked it and got the standard security warning that this app is not made from an identified developer.

I went to Settings > Security & Privacy to open the app anyways.

When the app started I got a dialog with the error below. On my 2nd attempt to run the app, it worked fine.


A JavaScript error occurred in the main process

Uncaught Exception:
Error: ENOENT: no such file or directory, mkdir '/Users/me/Library/Application Support/ratpack/extensions'
    at Error (native)
    at Object.fs.mkdirSync (fs.js:922:18)
    at getPath (/Applications/ratpack.app/Contents/Resources/app/node_modules/electron-devtools-installer/dist/utils.js:26:18)
    at Object.<anonymous> (/Applications/ratpack.app/Contents/Resources/app/node_modules/electron-devtools-installer/dist/index.js:42:59)
    at Module._compile (module.js:556:32)
    at Module._extensions..js (module.js:565:10)
    at Object.require.extensions.(anonymous function) [as .js] (/Applications/ratpack.app/Contents/Resources/app/node_modules/babel-register/lib/node.js:152:7)
    at Module.load (module.js:473:32)
    at tryModuleLoad (module.js:432:12)
    at Function.Module._load (module.js:424:3)

build / deploy

2 separate things

  • build - make a production build, with h2 friendly assets, etc ready to go
  • deploy - push to surge and / or now.sh

hmr

what's the story with hmr with react? what about vue et al?

Option to run relative to directory

Drag and drop is nice, but perhaps there's a way of running this from the command line or relative to a given directory? Perhaps the window would list js files in that directory? Perhaps drag-and-dropping a folder lists all the js files in it? The ability to quickly switch between files with common setup would be awesome.

I usually use budo, which is great; it's just the lack of multiple entry points that's the main hangup (ref: mattdesl/budo#139 ). I've been meaning to invest a bit of time to better understand and improve my setup; it's just never quite worthwhile.

cli support

[edit: simplified]

ratpack isn't trying to do too many things. We'll keep this simple too.

open

ratpack

or

ratpack path/to/script.js

install app?

ratpack --app

should just open the folder holding the app, that the user can then copy etc

windows

this is a catchall issue for windows bugs/quirks. @shrayasr, calling on your help for this.
there are 2 major touchpoints to make sure this thing works for windows. bin/ratpack, and src/app.js. further, I've marked possible areas to check with //todo - windows specifically stuff to do with paths. a lot of it should 'work', but who knows :P

your mission, if you choose to accept it, is to make this work on windows :)

stale webpack options

there's a bug where the server seems to be serving with a compiler from a previous instance when you change pragmas. this is similar to the issue I had with webpack using the same port (hence the hashing / port number genration). should solve this properly.

autoupdate

This is a lot more intense that I could imagine. It involves -

  • compile code, not using the babel-register hack
  • integrated with autoupdater
  • use electron-builder to generate installers for each platform
  • that also involves getting code signing certificates($$$!) per platform
  • probably have to set up CI on travis + appveyor to get builds for all platforms
  • deploy a nuts server (to now.sh?), making sure not to proxy requests to github
  • figure out a schedule by which I can regularly replease on npm, but do slower auto update releases (so as to not kill user's bandwidth) and yet allow them to optionally update of required

brrrr.

so it appears this is a long term goal. To shorten the pain, we'll get cli support in (#11), and write docs showing how to install / run from cli. this has advantage of updates always being small, but disadvantage that they have to do it by hand. We'll see what we can do to make that painless too.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.