Javascript環境構築

JS

project/
├── src/
│ ├── index.js # JavaScriptのエントリーポイント
│ ├── style.css # スタイルファイル(任意)
├── dist/ # ビルド後の出力先(Webpack使用時)
├── index.html # メインHTMLファイル
├── package.json # npm用設定ファイル
├── webpack.config.js # Webpack設定ファイル(任意)

mkdir gridstack-js-test
cd gridstack-js-test
npm init -y

これでpackage.json が生成されます。

必要なパッケージのインストール

npm install gridstack

開発用に Webpack と簡易的な開発サーバーをインストール

npm install --save-dev webpack webpack-cli webpack-dev-server css-loader style-loader html-webpack-plugin

webpack.config.js

const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');

module.exports = {
  entry: './src/index.js',
  output: {
    filename: 'main.js',
    path: path.resolve(__dirname, 'dist'),
  },
  module: {
    rules: [
      {
        test: /\.css$/,
        use: ['style-loader', 'css-loader'],
      },
    ],
  },
  plugins: [
    new HtmlWebpackPlugin({
      template: './index.html',
    }),
  ],
  devServer: {
    static: './dist',
    open: true,
  },
};

package.jsonに以下を書き加える

 "scripts": {
    "start": "webpack serve --mode development"
  },

開発サーバーの起動

npm run start