# Run The Code From npm Alright let's make a new small directory to test that we can now run this code and pull it from npm. ```bash $ mkdir test $ cd test ``` Now we need to create a `package.json` file that looks like this: ```json { "scripts": { "serve": "webpack-dev-server" }, "dependencies": { "@MYSCOPE/wasm-add": "^0.1.0" }, "devDependencies": { "webpack": "^4.0.1", "webpack-cli": "^2.0.10", "webpack-dev-server": "^3.1.0" } } ``` where `MYSCOPE` is your npm username. You can expand this to be a more complete file but we're really just trying to verify that this works! Next up we'll need to create a small webpack configuration so that we can use the `webpack-dev-server` to serve the wasm file properly. It should be noted that webpack isn't a requirement. It's just what was chosen for this tutorial. You just need something to server the code! Here's what your `webpack.config.js` should look like: ```javascript const path = require('path'); module.exports = { entry: "./index.js", output: { path: path.resolve(__dirname, "dist"), filename: "index.js", }, mode: "development" }; ``` This tells webpack that if it's going to start things up use `index.js`. Before we do that though we'll need to setup a small html file. Create a new file called `index.html` and put this inside it: ```html