This one is a simple and handy trick when you want to copy your directories without node_modules folder.
Enter this command in your terminal.
robocopy SOURCE DEST /mir /xd node_modules| import { buildData } from "./build-data"; | |
| <let/data = []/> | |
| <let/selected = null/> | |
| <div class="jumbotron"> | |
| <div class="row"> | |
| <div class="col-md-6"> | |
| <h1>Marko 6 (keyed)</h1> |
| const { | |
| makeRemoteExecutableSchema, | |
| introspectSchema, | |
| mergeSchemas | |
| } = require('graphql-tools'); | |
| const { createHttpLink } = require('apollo-link-http'); | |
| const { setContext } = require('apollo-link-context'); | |
| const { ApolloServer } = require('apollo-server-express'); | |
| const fetch = require('node-fetch'); | |
| const log4js = require('log4js'); |
To do this we will use the linux command grep.
Please jump to How to use linux command under Windows? for more information.
| <template lang="html"> | |
| <section class="cool-component-wrapper"> | |
| <p>TODO</p> | |
| </section> | |
| </template> |
| const domino = require('domino'); | |
| const html = ` | |
| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <ul data-bind="foreach: list"> | |
| <li data-bind="text: $data"></> | |
| </ul> |
| <script src="https://unpkg.com/@webcomponents/custom-elements"></script> | |
| <style> | |
| body { | |
| margin: 0; | |
| } | |
| /* Style the element from the outside */ | |
| /* | |
| fancy-tabs { | |
| margin-bottom: 32px; |
| <?php | |
| $key = 'your-secret-key-here'; | |
| $header = [ | |
| 'typ' => 'JWT', | |
| 'alg' => 'HS256' | |
| ]; | |
| $header = json_encode($header); | |
| $header = base64_encode($header); |